diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-03-05 06:38:47 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-05 06:38:47 +0800 |
commit | b7cc601332ecb739da187120ba7f8a47366efde4 (patch) | |
tree | 01c9f93a4420f44d35329e885d30d629615d306d | |
parent | f776394961a2cb9b19261ce01033933d6aba8ba1 (diff) | |
download | gsoc2013-evolution-b7cc601332ecb739da187120ba7f8a47366efde4.tar gsoc2013-evolution-b7cc601332ecb739da187120ba7f8a47366efde4.tar.gz gsoc2013-evolution-b7cc601332ecb739da187120ba7f8a47366efde4.tar.bz2 gsoc2013-evolution-b7cc601332ecb739da187120ba7f8a47366efde4.tar.lz gsoc2013-evolution-b7cc601332ecb739da187120ba7f8a47366efde4.tar.xz gsoc2013-evolution-b7cc601332ecb739da187120ba7f8a47366efde4.tar.zst gsoc2013-evolution-b7cc601332ecb739da187120ba7f8a47366efde4.zip |
Prototype some functions to shut the compiler up.
2003-03-04 Jeffrey Stedfast <fejj@ximian.com>
* mail-search.c: Prototype some functions to shut the compiler up.
svn path=/trunk/; revision=20163
-rw-r--r-- | mail/ChangeLog | 2 | ||||
-rw-r--r-- | mail/mail-search.c | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 9b70a50fc8..02a80f2806 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,7 @@ 2003-03-04 Jeffrey Stedfast <fejj@ximian.com> + * mail-search.c: Prototype some functions to shut the compiler up. + * mail-callbacks.c (composer_get_message): Go back to using e_destination_get_address() but use the camel-address parser on the strings to make sure they are non-empty. Fixes bug #37854. diff --git a/mail/mail-search.c b/mail/mail-search.c index 6fa681ff83..e206b560e7 100644 --- a/mail/mail-search.c +++ b/mail/mail-search.c @@ -33,7 +33,13 @@ #include <gtkhtml/htmlengine.h> #include <libgnomeui/gnome-window-icon.h> -static GtkObjectClass *parent_class; + +static ESearchingTokenizer *mail_search_tokenizer (MailSearch *ms); +static void mail_search_redisplay_message (MailSearch *ms); + + +static GtkObjectClass *parent_class = NULL; + static void mail_search_finalise (GObject *obj) |