Patch from Pablo Baena
svn path=/trunk/gtk-sharp/; revision=8381
This commit is contained in:
parent
d514b39b49
commit
0c6b67c26b
2 changed files with 10 additions and 0 deletions
|
@ -4,6 +4,7 @@ BASESOURCES = \
|
|||
adjustment.c \
|
||||
value.c \
|
||||
fileselection.c \
|
||||
combo.c \
|
||||
dialog.c \
|
||||
colorseldialog.c \
|
||||
error.c \
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue