diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-10-21 04:10:15 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-10-21 04:10:15 +0800 |
commit | 4a08257b83512cc32b73d732ccc53266a22b917c (patch) | |
tree | f4bd68280af53cc696626055fb792795bc7628cc /mail | |
parent | 8da37ea812d5b784dade3dc0f05df54fdc60fc7a (diff) | |
download | gsoc2013-evolution-4a08257b83512cc32b73d732ccc53266a22b917c.tar.gz gsoc2013-evolution-4a08257b83512cc32b73d732ccc53266a22b917c.tar.zst gsoc2013-evolution-4a08257b83512cc32b73d732ccc53266a22b917c.zip |
Deal with GtkComboBoxEntry removal in gtk+-3.0.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/e-mail-tag-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/e-mail-tag-editor.c b/mail/e-mail-tag-editor.c index c55ed05f7b..659d00aa6e 100644 --- a/mail/e-mail-tag-editor.c +++ b/mail/e-mail-tag-editor.c @@ -335,7 +335,7 @@ mail_tag_editor_init (EMailTagEditor *editor) renderer, "text", 1, NULL); widget = e_builder_get_widget (builder, "combo"); - gtk_combo_box_entry_set_text_column (GTK_COMBO_BOX_ENTRY (widget), 0); + gtk_combo_box_set_entry_text_column (GTK_COMBO_BOX_ENTRY (widget), 0); editor->priv->combo_entry = GTK_COMBO_BOX (widget); gtk_combo_box_set_active (GTK_COMBO_BOX (widget), DEFAULT_FLAG); |