diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-01-04 01:53:32 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-01-04 01:53:32 +0800 |
commit | 70f4bec5aa51a39208981cfe9c2570738a329f2e (patch) | |
tree | 80202c2c6802a2b441922d55423712f598c78112 /mail/message-tag-followup.c | |
parent | 0717b2f938195b8c9ec0b303433060c32a829666 (diff) | |
download | gsoc2013-evolution-70f4bec5aa51a39208981cfe9c2570738a329f2e.tar.gz gsoc2013-evolution-70f4bec5aa51a39208981cfe9c2570738a329f2e.tar.zst gsoc2013-evolution-70f4bec5aa51a39208981cfe9c2570738a329f2e.zip |
Fixed some build issues.
2003-01-03 Jeffrey Stedfast <fejj@ximian.com>
* mail-display.c: Fixed some build issues.
* mail-search.c: Same.
* mail-callbacks.c (save_draft_done): Use
g_signal_handlers_disconnect_by_func().
(manage_subscriptions): Use a weak_ref instead of connecting to
the destroy event.
svn path=/trunk/; revision=19224
Diffstat (limited to 'mail/message-tag-followup.c')
-rw-r--r-- | mail/message-tag-followup.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mail/message-tag-followup.c b/mail/message-tag-followup.c index 99de43a7c7..e333cc0408 100644 --- a/mail/message-tag-followup.c +++ b/mail/message-tag-followup.c @@ -28,6 +28,16 @@ #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 +#endif /* GTK_DISABLE_DEPRECATED */ + #include <glade/glade.h> #include <libgnomeui/gnome-window-icon.h> |