Author: lluis
Date: 2006-09-12 05:14:38 -0400 (Tue, 12 Sep 2006)
New Revision: 65280
Modified:
Log:
2006-09-07 Andr?\195?\169s G. Aragoneses <knocte (AT) gmail (DOT) com>
* Improved string.
Modified:
2006-09-12 09:13:55 UTC (rev 65279)
2006-09-12 09:14:38 UTC (rev 65280)
@@ -1,3 +1,7 @@
+2006-09-07 As G. Aragoneses <knocte (AT) gmail (DOT) com>
+
+* Improved string.
+
2006-09-01 Lluis Sanchez Gual <lluis (AT) novell (DOT) com>
*
Modified:
2006-09-12 09:13:55 UTC (rev 65279)
2006-09-12 09:14:38 UTC (rev 65280)
@@ -11,7 +11,7 @@
PropertyService propertyService = (PropertyService) ServiceManager.GetService (typeof (PropertyService));
FileUtilityService fileUtilityService = (FileUtilityService) ServiceManager.GetService (typeof (FileUtilityService));
-public FileSelector () : this (GettextCatalog.GetString (" file "), FileChooserA)
+public FileSelector () : this (GettextCatalog.GetString (" file"), FileChooserA)
{
}
Modified:
2006-09-12 09:13:55 UTC (rev 65279)
2006-09-12 09:14:38 UTC (rev 65280)
@@ -68,7 +68,7 @@
get { return defaultHandlerType; }
set {
if (!typeof (CommandHandler).IsAssignableFrom (value))
-throw new ArgumentException ("Value must be a subclass of CommandHandler");
+throw new ArgumentException ("Value must be a subclass of CommandHandler (" + value + ")");
defaultHandlerType = value;
}
Modified:
2006-09-12 09:13:55 UTC (rev 65279)
2006-09-12 09:14:38 UTC (rev 65280)
@@ -516,16 +516,6 @@
return widget;
}
return win;
-
-/*Gtk.Widget widget = win;
-while (widget is Gtk.Container) {
-Gtk.Widget child = ((Gtk.Container)widget).FocusChild;
-if (child != null)
-widget = child;
-else
-break;
-}
-return widget;*/
}
bool UpdateStatus ()
Mono-patches maillist - Mono-patches (AT) lists (DOT) ximian.com