aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2002-04-25 08:20:24 +0800
committerChris Lahey <clahey@src.gnome.org>2002-04-25 08:20:24 +0800
commit289d2c34a07365b18a44dc986beb37744f84e997 (patch)
tree8ba8d9b88034c0426ed7c6d5f4e391cc8e0d3d0d
parent41aeca42365bab14c4475705e63683c2fcaf1f9e (diff)
downloadgsoc2013-evolution-289d2c34a07365b18a44dc986beb37744f84e997.tar
gsoc2013-evolution-289d2c34a07365b18a44dc986beb37744f84e997.tar.gz
gsoc2013-evolution-289d2c34a07365b18a44dc986beb37744f84e997.tar.bz2
gsoc2013-evolution-289d2c34a07365b18a44dc986beb37744f84e997.tar.lz
gsoc2013-evolution-289d2c34a07365b18a44dc986beb37744f84e997.tar.xz
gsoc2013-evolution-289d2c34a07365b18a44dc986beb37744f84e997.tar.zst
gsoc2013-evolution-289d2c34a07365b18a44dc986beb37744f84e997.zip
Changed this to match the new e_table_memory_store_insert function
2002-04-24 Christopher James Lahey <clahey@ximian.com> * e-table-config.c (create_global_store): Changed this to match the new e_table_memory_store_insert function prototype. svn path=/trunk/; revision=16579
-rw-r--r--widgets/table/e-table-config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-config.c b/widgets/table/e-table-config.c
index 6b9ec94159..cd9a3359ba 100644
--- a/widgets/table/e-table-config.c
+++ b/widgets/table/e-table-config.c
@@ -492,7 +492,7 @@ create_global_store (ETableConfig *config)
global_store = e_table_memory_store_new (store_columns);
for (i = 0; config->source_spec->columns[i]; i++) {
- e_table_memory_store_insert (E_TABLE_MEMORY_STORE (global_store), i, (void **) &config->source_spec->columns[i]->title, NULL);
+ e_table_memory_store_insert (E_TABLE_MEMORY_STORE (global_store), i, NULL, config->source_spec->columns[i]->title);
}
}