Index: Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs =================================================================== diff -u -r9061a3986829cbc8d619a8d9f7a0ea61a67b3dd3 -rd4e29a7ce2a255384b32daf61303c4f895a97001 --- Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision 9061a3986829cbc8d619a8d9f7a0ea61a67b3dd3) +++ Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision d4e29a7ce2a255384b32daf61303c4f895a97001) @@ -79,8 +79,6 @@ { SetLanguage(); - log.Info(Core.Common.Base.Properties.Resources.App_App_Ringtoets_Copyright); - log.Info(Core.Common.Gui.Properties.Resources.App_Starting_Ringtoets); } @@ -140,7 +138,6 @@ Copyright = "© Deltares 2016", LicenseDescription = "Gratis", MainWindowTitle = "Ringtoets", - LicenseFilePath = "..\\Licentie.rtf", ManualFilePath = "Ringtoets_Manual.pdf" }; var mainWindow = new MainWindow(); Index: Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs =================================================================== diff -u -r1de82b61e03283a14d380a48cd718ec65a98432d -rd4e29a7ce2a255384b32daf61303c4f895a97001 --- Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 1de82b61e03283a14d380a48cd718ec65a98432d) +++ Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision d4e29a7ce2a255384b32daf61303c4f895a97001) @@ -97,15 +97,6 @@ } /// - /// Looks up a localized string similar to Ringtoets Copyright (C) 2016 Stichting Deltares. Dit programma komt ZONDER ENIGE GARANTIE. Dit programma is gratis en u mag het zelf verder verspreiden en/of aanpassen overeenkomstig de GNU Lesser General Public License versie 3.. - /// - public static string App_App_Ringtoets_Copyright { - get { - return ResourceManager.GetString("App_App_Ringtoets_Copyright", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Bevestigen. /// public static string Confirm { Index: Core/Common/src/Core.Common.Base/Properties/Resources.resx =================================================================== diff -u -r1de82b61e03283a14d380a48cd718ec65a98432d -rd4e29a7ce2a255384b32daf61303c4f895a97001 --- Core/Common/src/Core.Common.Base/Properties/Resources.resx (.../Resources.resx) (revision 1de82b61e03283a14d380a48cd718ec65a98432d) +++ Core/Common/src/Core.Common.Base/Properties/Resources.resx (.../Resources.resx) (revision d4e29a7ce2a255384b32daf61303c4f895a97001) @@ -135,9 +135,6 @@ Bevestigen - - Ringtoets Copyright (C) 2016 Stichting Deltares. Dit programma komt ZONDER ENIGE GARANTIE. Dit programma is gratis en u mag het zelf verder verspreiden en/of aanpassen overeenkomstig de GNU Lesser General Public License versie 3. - Voor het maken van een segment zijn twee punten nodig. Index: Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml =================================================================== diff -u -r3162879857e27b830d6f24982828d2e811aa2f2d -rd4e29a7ce2a255384b32daf61303c4f895a97001 --- Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml (.../MainWindow.xaml) (revision 3162879857e27b830d6f24982828d2e811aa2f2d) +++ Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml (.../MainWindow.xaml) (revision d4e29a7ce2a255384b32daf61303c4f895a97001) @@ -79,7 +79,6 @@ - Index: Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml.cs =================================================================== diff -u -r9061a3986829cbc8d619a8d9f7a0ea61a67b3dd3 -rd4e29a7ce2a255384b32daf61303c4f895a97001 --- Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml.cs (.../MainWindow.xaml.cs) (revision 9061a3986829cbc8d619a8d9f7a0ea61a67b3dd3) +++ Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml.cs (.../MainWindow.xaml.cs) (revision d4e29a7ce2a255384b32daf61303c4f895a97001) @@ -472,19 +472,11 @@ FileManualButton.IsEnabled = File.Exists(settings.FixedSettings.ManualFilePath); - LicenseButton.IsEnabled = File.Exists(settings.FixedSettings.LicenseFilePath); - ButtonQuickAccessOpenProject.IsEnabled = ButtonMenuFileOpenProject.IsEnabled; ButtonQuickAccessSaveProject.IsEnabled = ButtonMenuFileSaveProject.IsEnabled; UpdateRibbonExtensions(gui); - richTextFile = new RichTextFile - { - Name = Properties.Resources.MainWindow_LicenseView_Name, - FilePath = settings.FixedSettings.LicenseFilePath - }; - ValidateItems(); } Index: Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs =================================================================== diff -u -r9061a3986829cbc8d619a8d9f7a0ea61a67b3dd3 -rd4e29a7ce2a255384b32daf61303c4f895a97001 --- Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 9061a3986829cbc8d619a8d9f7a0ea61a67b3dd3) +++ Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision d4e29a7ce2a255384b32daf61303c4f895a97001) @@ -872,15 +872,6 @@ } /// - /// Looks up a localized string similar to Licentie. - /// - public static string MainWindow_LicenseView_Name { - get { - return ResourceManager.GetString("MainWindow_LicenseView_Name", resourceCulture); - } - } - - /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap map { @@ -1170,15 +1161,6 @@ } /// - /// Looks up a localized string similar to Licentie. - /// - public static string Ribbon_License { - get { - return ResourceManager.GetString("Ribbon_License", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Berichten. /// public static string Ribbon_Messages { Index: Core/Common/src/Core.Common.Gui/Properties/Resources.resx =================================================================== diff -u -r9061a3986829cbc8d619a8d9f7a0ea61a67b3dd3 -rd4e29a7ce2a255384b32daf61303c4f895a97001 --- Core/Common/src/Core.Common.Gui/Properties/Resources.resx (.../Resources.resx) (revision 9061a3986829cbc8d619a8d9f7a0ea61a67b3dd3) +++ Core/Common/src/Core.Common.Gui/Properties/Resources.resx (.../Resources.resx) (revision d4e29a7ce2a255384b32daf61303c4f895a97001) @@ -259,9 +259,6 @@ ..\Resources\error.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - Licentie - Begonnen met het importeren van gegevens. @@ -367,9 +364,6 @@ Versie - - Licentie - &Exporteren... Index: Core/Common/src/Core.Common.Gui/Settings/GuiCoreSettings.cs =================================================================== diff -u -r3fdd2bee85bdf8b556c52d6706ed887c2b70bed4 -rd4e29a7ce2a255384b32daf61303c4f895a97001 --- Core/Common/src/Core.Common.Gui/Settings/GuiCoreSettings.cs (.../GuiCoreSettings.cs) (revision 3fdd2bee85bdf8b556c52d6706ed887c2b70bed4) +++ Core/Common/src/Core.Common.Gui/Settings/GuiCoreSettings.cs (.../GuiCoreSettings.cs) (revision d4e29a7ce2a255384b32daf61303c4f895a97001) @@ -52,11 +52,6 @@ public string MainWindowTitle { get; set; } /// - /// Gets or sets the path of the license file to use in the graphical interface. - /// - public string LicenseFilePath { get; set; } - - /// /// Gets or sets the path of the manual file to use in the graphical interface. /// public string ManualFilePath { get; set; }