Moved UnsavedDocumentOption to UserInterface

This commit is contained in:
Michael Becker 2014-06-06 11:27:31 -04:00
parent 06c6d8e25f
commit 590328f2e4
3 changed files with 14 additions and 1 deletions

View File

@ -186,7 +186,6 @@
<DependentUpon>SplashScreenWindow.cs</DependentUpon>
</Compile>
<Compile Include="TemporaryFileManager.cs" />
<Compile Include="UnsavedDocumentOption.cs" />
<EmbeddedResource Include="Controls\ErrorList.resx">
<DependentUpon>ErrorList.cs</DependentUpon>
</EmbeddedResource>

View File

@ -72,6 +72,7 @@
<Compile Include="SingleInstanceManager.cs" />
<Compile Include="Toolbar.cs" />
<Compile Include="Toolbox.cs" />
<Compile Include="UnsavedDocumentOption.cs" />
<Compile Include="WindowState.cs" />
</ItemGroup>
<ItemGroup>

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UniversalEditor.UserInterface
{
public enum UnsavedDocumentOption
{
Save,
Discard
}
}