diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2009-01-30 12:54:41 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2009-01-30 12:54:41 +0800 |
commit | ca220a5f4df760f6f77b8a6c168043d06f11957e (patch) | |
tree | 6388c6cf59b962fc71852dc1bc8302ab3d587cd1 /mail | |
parent | a1fcb8fceb2a6b91236a6b674228b981742e7a43 (diff) | |
download | gsoc2013-evolution-ca220a5f4df760f6f77b8a6c168043d06f11957e.tar.gz gsoc2013-evolution-ca220a5f4df760f6f77b8a6c168043d06f11957e.tar.zst gsoc2013-evolution-ca220a5f4df760f6f77b8a6c168043d06f11957e.zip |
Fix compiler warnings
2009-01-30 Srinivasa Ragavan <sragavan@novell.com>
* message-list.c: (regen_list_exec): Fix compiler warnings
svn path=/trunk/; revision=37183
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/message-list.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index c0df32d91c..c65af1896a 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2009-01-30 Srinivasa Ragavan <sragavan@novell.com> + + * message-list.c: (regen_list_exec): Fix compiler warnings + 2009-01-29 Srinivasa Ragavan <sragavan@novell.com> * em-format-html-display.c: (efhd_update_bar), diff --git a/mail/message-list.c b/mail/message-list.c index 7487f12ad2..1b6932cb29 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -42,6 +42,7 @@ #include <camel/camel-folder-thread.h> #include <camel/camel-folder-summary.h> #include <camel/camel-vee-folder.h> +#include <camel/camel-string-utils.h> #include <libedataserver/e-memory.h> @@ -4061,7 +4062,7 @@ regen_list_exec (struct _regen_list_msg *m) on the flag whether we can view deleted messages or not. */ if (!was_deleted || (was_deleted && !m->hidedel)) - g_ptr_array_add (uids, camel_pstring_strdup (looking_for)); + g_ptr_array_add (uids, (gpointer) camel_pstring_strdup (looking_for)); } } } |