add overload for Dialog.AddActionWidget

svn path=/trunk/gtk-sharp/; revision=21835
This commit is contained in:
John Luke 2004-01-08 02:40:36 +00:00
parent d3b4dd07d5
commit 6daaf61038
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-01-07 John Luke <jluke@cfl.rr.com>
* gtk/Dialog.custom: add AddActionWidget overload
2004-01-07 Mike Kestner <mkestner@ximian.com>
* gtk/Gtk.metadata : TreeStore.Remove iter should be ref

View File

@ -29,3 +29,8 @@ public Gtk.HButtonBox ActionArea {
get { return GLib.Object.GetObject (gtksharp_dialog_get_action_area (this.Handle), false) as HButtonBox; }
}
public void AddActionWidget (Widget child, ResponseType response)
{
this.AddActionWidget (child, (int) response);
}