add overload for Dialog.AddActionWidget
svn path=/trunk/gtk-sharp/; revision=21835
This commit is contained in:
parent
d3b4dd07d5
commit
6daaf61038
2 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue