diff options
author | Andre Klapper <mcrha@redhat.com> | 2009-02-27 00:07:10 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2009-02-27 00:07:10 +0800 |
commit | ce438e04a5179bf08ad828b752e320c51622334e (patch) | |
tree | 59b68ec5d6980caf407b22bbcc986706fa9af259 /mail | |
parent | 372a8d0d9eb2fbcb26723e70b43a2db502b53f2c (diff) | |
download | gsoc2013-evolution-ce438e04a5179bf08ad828b752e320c51622334e.tar.gz gsoc2013-evolution-ce438e04a5179bf08ad828b752e320c51622334e.tar.zst gsoc2013-evolution-ce438e04a5179bf08ad828b752e320c51622334e.zip |
Remove deprecated gtk_combo_set_case_sensitive() call as FALSE IS already
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.
svn path=/trunk/; revision=37341
Diffstat (limited to 'mail')
-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])); |