Added new call

svn path=/trunk/gtk-sharp/; revision=8876
This commit is contained in:
Miguel de Icaza 2002-11-07 19:19:38 +00:00
parent 0a20a59470
commit 19a8501d1e

View File

@ -14,3 +14,12 @@ public Gtk.Entry Entry {
return new Gtk.Entry (gtksharp_combo_get_entry(this.Handle));
}
}
[DllImport("gtksharpglue")]
static extern IntPtr gtksharp_combo_get_button(IntPtr i);
public Gtk.Button Button {
get {
return new Gtk.Button (gtksharp_combo_get_button(this.Handle));
}
}