Implement ExitApplication() for GTK engine

This commit is contained in:
Michael Becker 2014-06-28 21:25:12 -04:00
parent adfd43180e
commit 317cdc5c21

View File

@ -16,6 +16,11 @@ namespace UniversalEditor.Environments.GTK
Application.Run ();
}
public override void ExitApplication ()
{
Application.Quit ();
}
protected override UniversalEditor.UserInterface.IHostApplicationWindow OpenWindowInternal (params string[] FileNames)
{
MainWindow mw = new MainWindow();