aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table.c
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnu.org>2001-01-16 07:25:42 +0800
committerMiguel de Icaza <miguel@src.gnome.org>2001-01-16 07:25:42 +0800
commitfeccdbccfbf9fa1c4d2f8b4d50da3a764d475089 (patch)
tree3363907f161a30cf7ea9160e288c529396559d6d /widgets/table/e-table.c
parentc152134378a6567dd69d6570017fc2ab1cb37f52 (diff)
downloadgsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar
gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar.gz
gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar.bz2
gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar.lz
gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar.xz
gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.tar.zst
gsoc2013-evolution-feccdbccfbf9fa1c4d2f8b4d50da3a764d475089.zip
Document all entry points. (e_table_specification_save_to_file): Change
2001-01-15 Miguel de Icaza <miguel@gnu.org> * e-table-specification.c: Document all entry points. (e_table_specification_save_to_file): Change prototype to return the number of bytes written. (e_table_specification_duplicate): Implement a function to duplicate nodes. (e_table_specification_save_to_node): Implement missing function. (e_table_specification_save_to_file): Enable. (e_table_specification_save_to_string): Enable. (e_table_specification_load_from_node): Just load the normal version of the click-to-add-message version, let other code translate it. (e_table_specification_load_from_string): Alter prototype to return success code. * e-table-specification.h: Do not store the translated version, store the plain version, so we can restore this later during the saving routines. * e-table.c (et_real_construct): Translate click to add message here. * e-table-header-item.c: Destroy config object if we are destroyed. svn path=/trunk/; revision=7518
Diffstat (limited to 'widgets/table/e-table.c')
-rw-r--r--widgets/table/e-table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c
index eec3f44735..f2b301db29 100644
--- a/widgets/table/e-table.c
+++ b/widgets/table/e-table.c
@@ -888,7 +888,7 @@ et_real_construct (ETable *e_table, ETableModel *etm, ETableExtras *ete,
ete = e_table_extras_new();
e_table->use_click_to_add = specification->click_to_add;
- e_table->click_to_add_message = g_strdup(specification->click_to_add_message_);
+ e_table->click_to_add_message = g_strdup (_(specification->click_to_add_message));
e_table->draw_grid = specification->draw_grid;
e_table->cursor_mode = specification->cursor_mode;
e_table->full_header = et_spec_to_full_header(e_table, specification, ete);