[Monodevelop-patches-list] r1367 - in trunk/MonoDevelop/src/Main/Base: . Gui/Dialogs
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Sun Apr 4 03:36:41 EDT 2004
Author: nickd
Date: 2004-04-04 03:36:41 -0400 (Sun, 04 Apr 2004)
New Revision: 1367
Modified:
trunk/MonoDevelop/src/Main/Base/ChangeLog
trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/NewProjectDialog.cs
Log:
2004-04-04 Nick Drochak <ndrochak at gol.com>
* Gui/Dialogs/NewProjectDialog.cs: On double click of icon when there
is an illegal or empty solution name, do not hide dialog.
Modified: trunk/MonoDevelop/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-04-04 05:50:24 UTC (rev 1366)
+++ trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-04-04 07:36:41 UTC (rev 1367)
@@ -1,3 +1,8 @@
+2004-04-04 Nick Drochak <ndrochak at gol.com>
+
+ * Gui/Dialogs/NewProjectDialog.cs: On double click of icon when there
+ is an illegal or empty solution name, do not hide dialog.
+
2004-04-03 Todd Berman <tberman at sevenl.net>
* Gui/Workbench/Layous/SdiWorkspaceLayout.cs: set pref height and width
Modified: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/NewProjectDialog.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/NewProjectDialog.cs 2004-04-04 05:50:24 UTC (rev 1366)
+++ trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/NewProjectDialog.cs 2004-04-04 07:36:41 UTC (rev 1367)
@@ -214,8 +214,6 @@
!fileUtilityService.IsValidFileName(name) || name.IndexOf(System.IO.Path.DirectorySeparatorChar) >= 0 ||
!fileUtilityService.IsValidFileName(location)) {
messageService.ShowError(GettextCatalog.GetString ("Illegal project name.\nOnly use letters, digits, space, '.' or '_'."));
- dialog.Respond(Gtk.ResponseType.Reject);
- dialog.Hide();
return;
}
More information about the Monodevelop-patches-list
mailing list