Renamed SelectEnvironmentDialog to SelectPerspectiveDialog

This commit is contained in:
Michael Becker 2014-07-18 18:45:38 -04:00
parent 013c6ac4fe
commit 33f0d798d7
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
namespace UniversalEditor.UserInterface.WindowsForms.Dialogs
{
partial class SelectEnvironmentDialogBase
partial class SelectPerspectiveDialogBase
{
/// <summary>
/// Required designer variable.

View File

@ -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;