diff options
author | Vasily_Makarov <danilka.pro@gmail.com> | 2011-06-12 12:10:47 +0400 |
---|---|---|
committer | Vasily_Makarov <danilka.pro@gmail.com> | 2011-06-12 12:10:47 +0400 |
commit | 5e831b42ef17b426c575fa315ef68430c4815857 (patch) | |
tree | 24de3c836c50a12166787f37502a147978d0b285 /saedit/interface.h | |
parent | faa37a3a73d8c7e5b7d02f4131081fda0b15a3bf (diff) | |
download | evol-tools-5e831b42ef17b426c575fa315ef68430c4815857.tar.gz evol-tools-5e831b42ef17b426c575fa315ef68430c4815857.tar.bz2 evol-tools-5e831b42ef17b426c575fa315ef68430c4815857.tar.xz evol-tools-5e831b42ef17b426c575fa315ef68430c4815857.zip |
saedit: Next evolution, add binary
Diffstat (limited to 'saedit/interface.h')
-rw-r--r-- | saedit/interface.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/saedit/interface.h b/saedit/interface.h index e9e52db..99bff1b 100644 --- a/saedit/interface.h +++ b/saedit/interface.h @@ -133,25 +133,25 @@ void set_up_interface() { gtk_label_set_markup(GTK_LABEL(label), markup_bold(_("Imagesets"))); gtk_box_pack_start(GTK_BOX(vbbox), label, TRUE, TRUE, 0); - imagesets_combo_box = gtk_combo_box_new_text(); - g_signal_connect(imagesets_combo_box, "changed", G_CALLBACK(imagesets_combo_box_changed_handler), NULL); - gtk_box_pack_start(GTK_BOX(vbbox), imagesets_combo_box, TRUE, TRUE, 0); + gen_sae_info->imagesets_combo_box = gtk_combo_box_new_text(); + g_signal_connect(gen_sae_info->imagesets_combo_box, "changed", G_CALLBACK(imagesets_combo_box_changed_handler), NULL); + gtk_box_pack_start(GTK_BOX(vbbox), gen_sae_info->imagesets_combo_box, TRUE, TRUE, 0); label = gtk_label_new(""); gtk_label_set_markup(GTK_LABEL(label), markup_bold(_("Actions"))); gtk_box_pack_start(GTK_BOX(vbbox), label, TRUE, TRUE, 0); - actions_combo_box = gtk_combo_box_new_text(); - g_signal_connect(actions_combo_box, "changed", G_CALLBACK(actions_combo_box_changed_handler), NULL); - gtk_box_pack_start(GTK_BOX(vbbox), actions_combo_box, TRUE, TRUE, 0); + gen_sae_info->actions_combo_box = gtk_combo_box_new_text(); + g_signal_connect(gen_sae_info->actions_combo_box, "changed", G_CALLBACK(actions_combo_box_changed_handler), NULL); + gtk_box_pack_start(GTK_BOX(vbbox), gen_sae_info->actions_combo_box, TRUE, TRUE, 0); label = gtk_label_new(""); gtk_label_set_markup(GTK_LABEL(label), markup_bold(_("Directions"))); gtk_box_pack_start(GTK_BOX(vbbox), label, TRUE, TRUE, 0); - animations_combo_box = gtk_combo_box_new_text(); - g_signal_connect(animations_combo_box, "changed", G_CALLBACK(animations_combo_box_changed_handler), NULL); - gtk_box_pack_start(GTK_BOX(vbbox), animations_combo_box, TRUE, TRUE, 0); + gen_sae_info->animations_combo_box = gtk_combo_box_new_text(); + g_signal_connect(gen_sae_info->animations_combo_box, "changed", G_CALLBACK(animations_combo_box_changed_handler), NULL); + gtk_box_pack_start(GTK_BOX(vbbox), gen_sae_info->animations_combo_box, TRUE, TRUE, 0); vpaned = gtk_vpaned_new(); gtk_box_pack_end(GTK_BOX(hbox), vpaned, TRUE, TRUE, 0); |