diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-04-25 08:20:24 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-04-25 08:20:24 +0800 |
commit | 289d2c34a07365b18a44dc986beb37744f84e997 (patch) | |
tree | 8ba8d9b88034c0426ed7c6d5f4e391cc8e0d3d0d /widgets | |
parent | 41aeca42365bab14c4475705e63683c2fcaf1f9e (diff) | |
download | gsoc2013-evolution-289d2c34a07365b18a44dc986beb37744f84e997.tar.gz 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
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/table/e-table-config.c | 2 |
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); } } |