diff --git a/glue/combo.c b/glue/combo.c new file mode 100644 index 000000000..acda0a726 --- /dev/null +++ b/glue/combo.c @@ -0,0 +1,13 @@ +/* combo.c : Glue for accessing fields in the GtkCombo widget. + * + * Author: Pablo Baena (pbaena@uol.com.ar) + * + */ + +#include + +GtkWidget* +gtksharp_combo_get_entry (GtkCombo* combo) +{ + return combo->entry; +}