aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Leach <jleach@src.gnome.org>2001-07-25 07:31:06 +0800
committerJacob Leach <jleach@src.gnome.org>2001-07-25 07:31:06 +0800
commitc2ba0b6c6beafa090b0b3ca0f4598890097d4806 (patch)
treeb920e7284d22bef5baaf033499e7b1a353e92aa0
parentb9a2c5208442afe5eb01983a8b7b0f015611f77d (diff)
downloadgsoc2013-evolution-c2ba0b6c6beafa090b0b3ca0f4598890097d4806.tar
gsoc2013-evolution-c2ba0b6c6beafa090b0b3ca0f4598890097d4806.tar.gz
gsoc2013-evolution-c2ba0b6c6beafa090b0b3ca0f4598890097d4806.tar.bz2
gsoc2013-evolution-c2ba0b6c6beafa090b0b3ca0f4598890097d4806.tar.lz
gsoc2013-evolution-c2ba0b6c6beafa090b0b3ca0f4598890097d4806.tar.xz
gsoc2013-evolution-c2ba0b6c6beafa090b0b3ca0f4598890097d4806.tar.zst
gsoc2013-evolution-c2ba0b6c6beafa090b0b3ca0f4598890097d4806.zip
fix some warnings.
svn path=/trunk/; revision=11371
-rw-r--r--shell/e-storage-set-view.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/e-storage-set-view.c b/shell/e-storage-set-view.c
index 43a7f9e3fc..6098a16f82 100644
--- a/shell/e-storage-set-view.c
+++ b/shell/e-storage-set-view.c
@@ -1433,13 +1433,13 @@ etree_value_at (ETreeModel *etree, ETreePath tree_path, int col, void *model_dat
if (col == 0)
return (void *) e_storage_get_display_name (storage);
else
- return TRUE;
+ return (void *) TRUE;
}
if (col == 0)
return _("My Evolution");
else
- return TRUE;
+ return (void *) TRUE;
}
static void
@@ -1460,7 +1460,7 @@ static void *
etree_duplicate_value (ETreeModel *etc, int col, const void *value, void *data)
{
if (col == 0)
- return g_strdup (value);
+ return (void *)g_strdup (value);
else
return (void *)value;
}