2003-10-06 Artem Popov <artemis@yandex.ru>

* gtk/Dialog.custom : Action area is an HButtonBox, not a VBox.

svn path=/trunk/gtk-sharp/; revision=18686
This commit is contained in:
Mike Kestner 2003-10-06 20:54:27 +00:00
parent 9877690874
commit 9a0e14875a
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2003-10-06 Artem Popov <artemis@yandex.ru>
* gtk/Dialog.custom : Action area is an HButtonBox, not a VBox.
2003-10-06 Mike Kestner <mkestner@ximian.com>
* generator/InterfaceGen.cs (Generate): gen the EventHandlers for sigs

View File

@ -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; }
}