2004-05-07 Mike Kestner <mkestner@ximian.com>

* gnome/Druid.custom : fix Todd's broken code.

svn path=/trunk/gtk-sharp/; revision=26950
This commit is contained in:
Mike Kestner 2004-05-07 21:49:09 +00:00
parent 4a9e9ea3ee
commit 016cdf6e18

View File

@ -4,12 +4,12 @@
public Druid (string title, bool close_on_cancel, out Gtk.Widget window) : base (IntPtr.Zero) public Druid (string title, bool close_on_cancel, out Gtk.Widget window) : base (IntPtr.Zero)
{ {
if (GetType () != typeof (Druid)) { if (GetType () != typeof (Druid)) {
CreateNativeObject (new string[0], new GLib.Vlaue [0]); CreateNativeObject (new string[0], new GLib.Value [0]);
window = ConstructWithWindow (title, null, close_on_cancel); window = ConstructWithWindow (title, null, close_on_cancel);
return; return;
} }
IntPtr window_handle; IntPtr window_handle;
Raw = gnome_druid_new_with_window (title, IntPtr.Zero, close_on_cancel, window_handle); Raw = gnome_druid_new_with_window (title, IntPtr.Zero, close_on_cancel, out window_handle);
window = (Gtk.Widget) GLib.Object.GetObject (window_handle); window = (Gtk.Widget) GLib.Object.GetObject (window_handle);
} }