diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2007-06-03 10:49:38 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-06-03 10:49:38 +0800 |
commit | bdb60ce109c1a2958c89bb07b599407d26a2cf4f (patch) | |
tree | 691263b22b737cd652d26200accd031fd93c870f /shell/e-shell-settings-dialog.c | |
parent | 646455c0f94ac047b3ed44dbd7e796f746451700 (diff) | |
download | gsoc2013-evolution-bdb60ce109c1a2958c89bb07b599407d26a2cf4f.tar.gz gsoc2013-evolution-bdb60ce109c1a2958c89bb07b599407d26a2cf4f.tar.zst gsoc2013-evolution-bdb60ce109c1a2958c89bb07b599407d26a2cf4f.zip |
Fix compilation warnings in shell directory (#441055).
svn path=/trunk/; revision=33627
Diffstat (limited to 'shell/e-shell-settings-dialog.c')
-rw-r--r-- | shell/e-shell-settings-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-settings-dialog.c b/shell/e-shell-settings-dialog.c index 9f3f24e2a2..1732d5e95a 100644 --- a/shell/e-shell-settings-dialog.c +++ b/shell/e-shell-settings-dialog.c @@ -172,7 +172,7 @@ load_pages (EShellSettingsDialog *dialog) language_names = g_get_language_names (); while (*language_names != NULL) - languages = g_slist_append (languages, *language_names++); + languages = g_slist_append (languages, (gpointer)(*language_names++)); page_list = NULL; for (i = 0; i < control_list->_length; i ++) { |