From 33f0d798d7579755b8a5b7d455a0ad66dcfc5a41 Mon Sep 17 00:00:00 2001 From: alcexhim Date: Fri, 18 Jul 2014 18:45:38 -0400 Subject: [PATCH] Renamed SelectEnvironmentDialog to SelectPerspectiveDialog --- ...og.Designer.cs => SelectPerspectiveDialog.Designer.cs} | 2 +- ...ectEnvironmentDialog.cs => SelectPerspectiveDialog.cs} | 8 ++++---- ...nvironmentDialog.resx => SelectPerspectiveDialog.resx} | 0 3 files changed, 5 insertions(+), 5 deletions(-) rename CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/{SelectEnvironmentDialog.Designer.cs => SelectPerspectiveDialog.Designer.cs} (99%) rename CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/{SelectEnvironmentDialog.cs => SelectPerspectiveDialog.cs} (83%) rename CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/{SelectEnvironmentDialog.resx => SelectPerspectiveDialog.resx} (100%) diff --git a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectEnvironmentDialog.Designer.cs b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectPerspectiveDialog.Designer.cs similarity index 99% rename from CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectEnvironmentDialog.Designer.cs rename to CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectPerspectiveDialog.Designer.cs index c5e5c7b8..8d8b7104 100644 --- a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectEnvironmentDialog.Designer.cs +++ b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectPerspectiveDialog.Designer.cs @@ -1,6 +1,6 @@ namespace UniversalEditor.UserInterface.WindowsForms.Dialogs { - partial class SelectEnvironmentDialogBase + partial class SelectPerspectiveDialogBase { /// /// Required designer variable. diff --git a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectEnvironmentDialog.cs b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectPerspectiveDialog.cs similarity index 83% rename from CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectEnvironmentDialog.cs rename to CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectPerspectiveDialog.cs index 06514acc..525b9486 100644 --- a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectEnvironmentDialog.cs +++ b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectPerspectiveDialog.cs @@ -7,9 +7,9 @@ using System.Windows.Forms; namespace UniversalEditor.UserInterface.WindowsForms.Dialogs { - internal partial class SelectEnvironmentDialogBase : Form + internal partial class SelectPerspectiveDialogBase : Form { - public SelectEnvironmentDialogBase() + public SelectPerspectiveDialogBase() { InitializeComponent(); @@ -34,11 +34,11 @@ namespace UniversalEditor.UserInterface.WindowsForms.Dialogs cmdOK.Enabled = (lvEnvironments.CheckedItems.Count == 1); } } - public class SelectEnvironmentDialog + public class SelectPerspectiveDialog { public DialogResult ShowDialog() { - SelectEnvironmentDialogBase dlg = new SelectEnvironmentDialogBase(); + SelectPerspectiveDialogBase dlg = new SelectPerspectiveDialogBase(); if (dlg.ShowDialog() == DialogResult.OK) { return DialogResult.OK; diff --git a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectEnvironmentDialog.resx b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectPerspectiveDialog.resx similarity index 100% rename from CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectEnvironmentDialog.resx rename to CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Dialogs/SelectPerspectiveDialog.resx