aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Klapper <mcrha@redhat.com>2009-02-27 00:07:10 +0800
committerAndre Klapper <aklapper@src.gnome.org>2009-02-27 00:07:10 +0800
commitce438e04a5179bf08ad828b752e320c51622334e (patch)
tree59b68ec5d6980caf407b22bbcc986706fa9af259
parent372a8d0d9eb2fbcb26723e70b43a2db502b53f2c (diff)
downloadgsoc2013-evolution-ce438e04a5179bf08ad828b752e320c51622334e.tar
gsoc2013-evolution-ce438e04a5179bf08ad828b752e320c51622334e.tar.gz
gsoc2013-evolution-ce438e04a5179bf08ad828b752e320c51622334e.tar.bz2
gsoc2013-evolution-ce438e04a5179bf08ad828b752e320c51622334e.tar.lz
gsoc2013-evolution-ce438e04a5179bf08ad828b752e320c51622334e.tar.xz
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
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/message-tag-followup.c1
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]));