From 395cc5108cd48438a040331170c3cd30cf4a407d Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 1 Jul 2015 11:29:19 -0400 Subject: [PATCH] Finished GTK+ uiComboBox. --- redo/unix/combobox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redo/unix/combobox.c b/redo/unix/combobox.c index 14a32e13..f21dac06 100644 --- a/redo/unix/combobox.c +++ b/redo/unix/combobox.c @@ -21,7 +21,7 @@ static void comboboxAppend(uiCombobox *cc, const char *text) { struct combobox *c = (struct combobox *) cc; - PUT_CODE_HERE; + gtk_combo_box_text_append(c->comboboxText, NULL, text); } static uiCombobox *finishNewCombobox(GtkWidget *(*newfunc)(void))