diff --git a/ChangeLog b/ChangeLog index 299277e4f..d51fdfc55 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-10-06 Artem Popov + + * gtk/Dialog.custom : Action area is an HButtonBox, not a VBox. + 2003-10-06 Mike Kestner * generator/InterfaceGen.cs (Generate): gen the EventHandlers for sigs diff --git a/gtk/Dialog.custom b/gtk/Dialog.custom index ac3286eb6..92d5d07f5 100644 --- a/gtk/Dialog.custom +++ b/gtk/Dialog.custom @@ -25,7 +25,7 @@ public Gtk.VBox VBox { [DllImport("gtksharpglue")] static extern IntPtr gtksharp_dialog_get_action_area (IntPtr i); -public Gtk.VBox ActionArea { - get { return GLib.Object.GetObject (gtksharp_dialog_get_action_area (this.Handle), false) as VBox; } +public Gtk.HButtonBox ActionArea { + get { return GLib.Object.GetObject (gtksharp_dialog_get_action_area (this.Handle), false) as HButtonBox; } }