Patch from Pablo Baena

svn path=/trunk/gtk-sharp/; revision=8381
This commit is contained in:
Miguel de Icaza 2002-10-19 05:53:37 +00:00
parent d514b39b49
commit 0c6b67c26b
2 changed files with 10 additions and 0 deletions

View File

@ -4,6 +4,7 @@ BASESOURCES = \
adjustment.c \
value.c \
fileselection.c \
combo.c \
dialog.c \
colorseldialog.c \
error.c \

View File

@ -5,3 +5,12 @@ public void SetPopdownStrings (params string[] args) {
list.Append (Marshal.StringToHGlobalAnsi (arg));
PopdownStrings = list;
}
[DllImport("gtksharpglue")]
static extern IntPtr gtksharp_combo_get_entry(IntPtr i);
public Gtk.Entry Entry {
get {
return new Gtk.Entry (gtksharp_combo_get_entry(this.Handle));
}
}