diff options
author | Elias Aebi <[email protected]> | 2013-11-15 17:52:52 +0100 |
---|---|---|
committer | Elias Aebi <[email protected]> | 2013-11-15 17:52:52 +0100 |
commit | 612e6529a66899e5466b9bf4bd9bdc2443075896 (patch) | |
tree | fc26c1088f7395add2b8a84d7c6de7fc0a8dcdf9 /src/dlg-batch-add.c | |
parent | 084bfc5807982b4f3e32850a64993766fd9993d0 (diff) | |
download | engrampa-612e6529a66899e5466b9bf4bd9bdc2443075896.tar.bz2 engrampa-612e6529a66899e5466b9bf4bd9bdc2443075896.tar.xz |
port to GTK3
Diffstat (limited to 'src/dlg-batch-add.c')
-rw-r--r-- | src/dlg-batch-add.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/dlg-batch-add.c b/src/dlg-batch-add.c index 28dbc01..e9d00a9 100644 --- a/src/dlg-batch-add.c +++ b/src/dlg-batch-add.c @@ -555,7 +555,11 @@ dlg_batch_add_files (FrWindow *window, /* archive type combobox */ +#if GTK_CHECK_VERSION(2,24,0) + data->a_archive_type_combo_box = gtk_combo_box_text_new (); +#else data->a_archive_type_combo_box = gtk_combo_box_new_text (); +#endif if (data->single_file) data->supported_types = single_file_save_type; else @@ -563,8 +567,11 @@ dlg_batch_add_files (FrWindow *window, sort_mime_types_by_extension (data->supported_types); for (i = 0; data->supported_types[i] != -1; i++) - gtk_combo_box_append_text (GTK_COMBO_BOX (data->a_archive_type_combo_box), - mime_type_desc[data->supported_types[i]].default_ext); +#if GTK_CHECK_VERSION(2,24,0) + gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (data->a_archive_type_combo_box), mime_type_desc[data->supported_types[i]].default_ext); +#else + gtk_combo_box_append_text (GTK_COMBO_BOX (data->a_archive_type_combo_box), mime_type_desc[data->supported_types[i]].default_ext); +#endif gtk_box_pack_start (GTK_BOX (a_archive_type_box), data->a_archive_type_combo_box, TRUE, TRUE, 0); gtk_widget_show_all (a_archive_type_box); |