diff options
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/message-tag-followup.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 4043d11b87..6fca83b37b 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2009-02-26 Andre Klapper <mcrha@redhat.com> + + * message-tag-followup-c: + Remove deprecated gtk_combo_set_case_sensitive() call as FALSE + IS already the default value for the case-sensitive property. + 2009-02-25 Milan Crha <mcrha@redhat.com> ** Fix for bug #572268 diff --git a/mail/message-tag-followup.c b/mail/message-tag-followup.c index 93f037eb82..a5f2a967db 100644 --- a/mail/message-tag-followup.c +++ b/mail/message-tag-followup.c @@ -312,7 +312,6 @@ construct (MessageTagEditor *editor) renderer, "text", 1, NULL); followup->combo = GTK_COMBO (glade_xml_get_widget (gui, "combo")); - gtk_combo_set_case_sensitive (followup->combo, FALSE); strings = NULL; for (i = 0; i < num_available_flags; i++) strings = g_list_append (strings, (char *) _(available_flags[i])); |