diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-03 18:31:00 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-03 18:31:00 +0800 |
commit | e24fd5f7d15b9a97812764d1598a267204fc4479 (patch) | |
tree | 171d12e7abae6f09cccd02598bbea449daab5a05 /mail/message-tag-followup.h | |
parent | 03cdf54aaba80cf64c118b148c32d5f540365d93 (diff) | |
download | gsoc2013-evolution-e24fd5f7d15b9a97812764d1598a267204fc4479.tar.gz gsoc2013-evolution-e24fd5f7d15b9a97812764d1598a267204fc4479.tar.zst gsoc2013-evolution-e24fd5f7d15b9a97812764d1598a267204fc4479.zip |
removed.
2004-05-03 Not Zed <NotZed@Ximian.com>
* mail-send-recv.c (receive_update_done): removed.
* em-mailer-prefs.h:
* message-tag-followup.h:
* mail-config-druid.h:
* mail-tools.h: clean up & use forward decls. Fix users with
busted includes.
svn path=/trunk/; revision=25745
Diffstat (limited to 'mail/message-tag-followup.h')
-rw-r--r-- | mail/message-tag-followup.h | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/mail/message-tag-followup.h b/mail/message-tag-followup.h index c6a292c19e..e3fac124d6 100644 --- a/mail/message-tag-followup.h +++ b/mail/message-tag-followup.h @@ -20,15 +20,10 @@ * */ - #ifndef __MESSAGE_TAG_FOLLOWUP_H__ #define __MESSAGE_TAG_FOLLOWUP_H__ -#include <gtk/gtk.h> #include <mail/message-tag-editor.h> -#include <camel/camel-folder.h> -#include <camel/camel-folder-summary.h> -#include <widgets/misc/e-dateedit.h> #include <time.h> #ifdef __cplusplus @@ -49,13 +44,13 @@ typedef struct _MessageTagFollowUpClass MessageTagFollowUpClass; struct _MessageTagFollowUp { MessageTagEditor parent; - GtkTreeView *message_list; + struct _GtkTreeView *message_list; - GtkCombo *combo; + struct _GtkCombo *combo; - EDateEdit *target_date; - GtkToggleButton *completed; - GtkButton *clear; + struct _EDateEdit *target_date; + struct _GtkToggleButton *completed; + struct _GtkButton *clear; time_t completed_date; }; |