diff --git a/BeWo/BeWoApp.xaml.cs b/BeWo/BeWoApp.xaml.cs index 881bcfffe..ffa0e051a 100644 --- a/BeWo/BeWoApp.xaml.cs +++ b/BeWo/BeWoApp.xaml.cs @@ -1305,16 +1305,17 @@ namespace BeWo foreach (var blubb in openWindowCollection) { var abc = (Window)blubb; + var title = abc.Title; - if (!abc.Title.Equals("BeWoPlaner") && blubb.GetType() == typeof(WindowContentHolder)) + if (!title.Equals("BeWoPlaner") && blubb.GetType() == typeof(WindowContentHolder)) { abc.Close(); } - else if (abc.Title.IndexOf("Popup") >= 0) + else if (title.IndexOf("Popup") >= 0) { abc.Close(); } - else if (abc.Title.IndexOf("Druckvorschau") >= 0) + else if (title.IndexOf("Druckvorschau") >= 0) { abc.Close(); } diff --git a/BeWo/View/Detail/Accounting/GkvAbrechnungOverview.xaml b/BeWo/View/Detail/Accounting/GkvAbrechnungOverview.xaml index 6601de445..1f9647af7 100644 --- a/BeWo/View/Detail/Accounting/GkvAbrechnungOverview.xaml +++ b/BeWo/View/Detail/Accounting/GkvAbrechnungOverview.xaml @@ -182,7 +182,7 @@ Margin="1" VerticalAlignment="Center" IsEnabled="{Binding Row.IsFormularEnabled}" - ToolTip="Formular anzeigen" + ToolTip="Begleitzettel einzeln anzeigen" Visibility="Visible"> +