diff options
author | Dmitry Mastrukov <dmitry@taurussoft.org> | 2003-03-05 06:09:44 +0800 |
---|---|---|
committer | Mike Kestner <mkestner@src.gnome.org> | 2003-03-05 06:09:44 +0800 |
commit | 63aef14c027c66d5804af335cd112439395496c7 (patch) | |
tree | f092c746035e83a621c47b958e5206e67c8388da /widgets/table/e-table-config.c | |
parent | fbf56b4c56143ef9487e5e454d906e83fe2ef4a2 (diff) | |
download | gsoc2013-evolution-63aef14c027c66d5804af335cd112439395496c7.tar.gz gsoc2013-evolution-63aef14c027c66d5804af335cd112439395496c7.tar.zst gsoc2013-evolution-63aef14c027c66d5804af335cd112439395496c7.zip |
i18n fix
2003-03-04 Dmitry Mastrukov <dmitry@taurussoft.org>
* gal/widgets/e-unicode.c : i18n fix
2003-03-04 Dmitry Mastrukov <dmitry@taurussoft.org>
* e-cell-date.c (ecd_get_text): i18n fix
* e-table.c (et_real_construct): i18n fix
* e-table-config.c (create_global_store): i18n fix
* e-table-utils.c (et_col_spec_to_col): i18n fix
2003-03-04 Mike Kestner <mkestner@ximian.com>
* e-tree-selection-model.c : some cursor fixes
svn path=/trunk/; revision=20156
Diffstat (limited to 'widgets/table/e-table-config.c')
-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 63aac26837..af6e2bee8c 100644 --- a/widgets/table/e-table-config.c +++ b/widgets/table/e-table-config.c @@ -517,7 +517,7 @@ create_global_store (ETableConfig *config) global_store = e_table_memory_store_new (store_columns); for (i = 0; config->source_spec->columns[i]; i++) { - char *text = e_utf8_from_locale_string (dgettext (config->domain, + char *text = g_strdup (dgettext (config->domain, config->source_spec->columns[i]->title)); e_table_memory_store_insert_adopt (E_TABLE_MEMORY_STORE (global_store), i, NULL, text); |