summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-05-17 04:21:03 +0200
committerinfirit <[email protected]>2014-09-23 13:31:02 +0200
commitf8aec907364307470991b0b0d1b7b883c7397c57 (patch)
treeb1ffc709b085df288332f555722f6f644b1859e5
parentd51892aff7ea9fd49a29e6bc24333753083e798a (diff)
downloadatril-f8aec907364307470991b0b0d1b7b883c7397c57.tar.bz2
atril-f8aec907364307470991b0b0d1b7b883c7397c57.tar.xz
GTK_IS_COMBO_BOX is deprecated, use gtk_combo_box_get_has_entry
-rwxr-xr-xlibview/ev-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libview/ev-view.c b/libview/ev-view.c
index ec378758..b7b5973d 100755
--- a/libview/ev-view.c
+++ b/libview/ev-view.c
@@ -2242,7 +2242,7 @@ ev_view_form_field_choice_changed (GtkWidget *widget,
{
EvFormFieldChoice *field_choice = EV_FORM_FIELD_CHOICE (field);
- if (GTK_IS_COMBO_BOX (widget)) {
+ if (gtk_combo_box_get_has_entry ( GTK_COMBO_BOX (widget))) {
gint item;
item = gtk_combo_box_get_active (GTK_COMBO_BOX (widget));