aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-info.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2002-05-15 03:55:21 +0800
committerChris Lahey <clahey@src.gnome.org>2002-05-15 03:55:21 +0800
commit3bfd63acd3ab642e82e0e1d0641f42bea177fa3b (patch)
treef4c902cb20de25e79e0565aa9cbf5da324e3b79a /mail/folder-info.c
parent314be45b2d916146616fec05c076b31f71a89b4e (diff)
downloadgsoc2013-evolution-3bfd63acd3ab642e82e0e1d0641f42bea177fa3b.tar
gsoc2013-evolution-3bfd63acd3ab642e82e0e1d0641f42bea177fa3b.tar.gz
gsoc2013-evolution-3bfd63acd3ab642e82e0e1d0641f42bea177fa3b.tar.bz2
gsoc2013-evolution-3bfd63acd3ab642e82e0e1d0641f42bea177fa3b.tar.lz
gsoc2013-evolution-3bfd63acd3ab642e82e0e1d0641f42bea177fa3b.tar.xz
gsoc2013-evolution-3bfd63acd3ab642e82e0e1d0641f42bea177fa3b.tar.zst
gsoc2013-evolution-3bfd63acd3ab642e82e0e1d0641f42bea177fa3b.zip
Added #include "folder-info.h".
2002-05-14 Christopher James Lahey <clahey@ximian.com> * component-factory.c: Added #include "folder-info.h". * folder-browser-window.c (folder_browser_window_new), mail-account-editor.c (apply_changes), mail-account-gui.c (mail_account_gui_save), message-tag-editor.c: Removed some unused variables. * folder-info.c: Added #include "folder-info.h". Removed static declaration of evolution_folder_info_get_type. * folder-info.c (destroy), mail-callbacks.c (confirm_goto_next_folder, find_current_folder, find_next_folder_r, find_next_folder, do_evil_kludgy_goto_next_folder_hack), mail-composer-prefs.c (sig_name_changed): Commented out these unused functions. * mail-config.c (add_new_storage): Removed this unused function. * mail-local.c (mlf_init): Fix the declaration of this function to match the required signature. svn path=/trunk/; revision=16788
Diffstat (limited to 'mail/folder-info.c')
-rw-r--r--mail/folder-info.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/folder-info.c b/mail/folder-info.c
index 87ca367dac..bf4f11f227 100644
--- a/mail/folder-info.c
+++ b/mail/folder-info.c
@@ -10,6 +10,8 @@
#include <config.h>
#endif
+#include "folder-info.h"
+
#include "Mail.h"
#include <glib.h>
@@ -61,7 +63,6 @@ struct _folder_info_msg {
int unread;
};
-static GtkType evolution_folder_info_get_type (void);
gboolean ready;
static char *
@@ -168,6 +169,7 @@ impl_GNOME_Evolution_FolderInfo_getInfo (PortableServer_Servant servant,
mail_get_info (foldername, listener);
}
+#if 0
static void
destroy (GtkObject *object)
{
@@ -175,6 +177,7 @@ destroy (GtkObject *object)
bonobo_object_unref (BONOBO_OBJECT (info->pb));
}
+#endif
static void
evolution_folder_info_class_init (EvolutionFolderInfoClass *klass)