aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2000-06-28 23:02:30 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-06-28 23:02:30 +0800
commit09f78111f5a1cbee7d703553546595bd586e3116 (patch)
tree57903474178fe6b38f6b62e0cde121b79406cd29
parent8e1bd54222c9beff37131485bdd1a9beb51dbd40 (diff)
downloadgsoc2013-evolution-09f78111f5a1cbee7d703553546595bd586e3116.tar
gsoc2013-evolution-09f78111f5a1cbee7d703553546595bd586e3116.tar.gz
gsoc2013-evolution-09f78111f5a1cbee7d703553546595bd586e3116.tar.bz2
gsoc2013-evolution-09f78111f5a1cbee7d703553546595bd586e3116.tar.lz
gsoc2013-evolution-09f78111f5a1cbee7d703553546595bd586e3116.tar.xz
gsoc2013-evolution-09f78111f5a1cbee7d703553546595bd586e3116.tar.zst
gsoc2013-evolution-09f78111f5a1cbee7d703553546595bd586e3116.zip
message-list.c: added prototype for filter_date()
svn path=/trunk/; revision=3772
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/message-list.c10
-rw-r--r--mail/message-list.h1
3 files changed, 9 insertions, 7 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 44e1e0bfa9..f705d7e395 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2000-06-28 Jeffrey Stedfast <fejj@helixcode.com>
+
+ * message-list.c: Added prototype for filter_date to make
+ it build cleanly
+
2000-06-27 Christopher James Lahey <clahey@helixcode.com>
* message-list.c: Made dates display grouping information
diff --git a/mail/message-list.c b/mail/message-list.c
index 2edc563489..3162685397 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -52,13 +52,9 @@
static BonoboObjectClass *message_list_parent_class;
static POA_Evolution_MessageList__vepv evolution_message_list_vepv;
-static void
-on_cursor_change_cmd (ETable *table,
- int row,
- gpointer user_data);
-static void
-select_row (ETable *table,
- gpointer user_data);
+static void on_cursor_change_cmd (ETable *table, int row, gpointer user_data);
+static void select_row (ETable *table, gpointer user_data);
+static char *filter_date (const void *data);
static CamelMessageInfo *
diff --git a/mail/message-list.h b/mail/message-list.h
index 28ce513e18..033f0ca23a 100644
--- a/mail/message-list.h
+++ b/mail/message-list.h
@@ -92,3 +92,4 @@ void message_list_set_search (MessageList *message_list, const char *s
GtkWidget *message_list_get_widget (MessageList *message_list);
#endif /* _MESSAGE_LIST_H_ */
+