From 77a5d97f7092dc485a0c8d38343f7c5928caa97d Mon Sep 17 00:00:00 2001
From: Matthew Barnes <mbarnes@redhat.com>
Date: Fri, 6 Jun 2008 01:50:42 +0000
Subject: Never undefine DISABLE_DEPRECATED macros in source code. Yes, it will

2008-06-05  Matthew Barnes  <mbarnes@redhat.com>

	* mail/message-tag-followup.c:
	Never undefine DISABLE_DEPRECATED macros in source code.
	Yes, it will break the build if it's defined.  That's the point!


svn path=/trunk/; revision=35600
---
 mail/message-tag-followup.c | 10 ----------
 1 file changed, 10 deletions(-)

(limited to 'mail/message-tag-followup.c')

diff --git a/mail/message-tag-followup.c b/mail/message-tag-followup.c
index db5e23acf6..f321df2bf7 100644
--- a/mail/message-tag-followup.c
+++ b/mail/message-tag-followup.c
@@ -26,18 +26,8 @@
 #include <stdlib.h>
 #include <string.h>
 
-#ifdef GTK_DISABLE_DEPRECATED
-/* Gtk2's GtkCombo widget uses the deprecated GtkList widget, so
-   there's no way to use GtkCombo and still build if
-   GTK_DISABLE_DEPRECATED is defined. Yay Gtk! */
-#undef GTK_DISABLE_DEPRECATED
 #include <gtk/gtkcombo.h>
 #include <gtk/gtklist.h>
-#define GTK_ENABLE_DEPRECATED
-#else
-#include <gtk/gtkcombo.h>
-#include <gtk/gtklist.h>
-#endif /* !GTK_DISABLE_DEPRECATED */
 
 #include <gtk/gtkentry.h>
 #include <gtk/gtktogglebutton.h>
-- 
cgit