From 9a0e14875a20f1e90d4e7bacc0e2ee057b904404 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Mon, 6 Oct 2003 20:54:27 +0000 Subject: [PATCH] 2003-10-06 Artem Popov * gtk/Dialog.custom : Action area is an HButtonBox, not a VBox. svn path=/trunk/gtk-sharp/; revision=18686 --- ChangeLog | 4 ++++ gtk/Dialog.custom | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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; } }