aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-specification.h
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/table/e-table-specification.h')
-rw-r--r--widgets/table/e-table-specification.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/widgets/table/e-table-specification.h b/widgets/table/e-table-specification.h
index 64e784733a..3434c51088 100644
--- a/widgets/table/e-table-specification.h
+++ b/widgets/table/e-table-specification.h
@@ -25,7 +25,8 @@ typedef struct {
guint draw_grid : 1;
GtkSelectionMode selection_mode;
ETableCursorMode cursor_mode;
- char *click_to_add_message_;
+
+ char *click_to_add_message;
} ETableSpecification;
typedef struct {
@@ -37,17 +38,16 @@ ETableSpecification *e_table_specification_new (void);
gboolean e_table_specification_load_from_file (ETableSpecification *specification,
const char *filename);
-void e_table_specification_load_from_string (ETableSpecification *specification,
+gboolean e_table_specification_load_from_string (ETableSpecification *specification,
const char *xml);
void e_table_specification_load_from_node (ETableSpecification *specification,
const xmlNode *node);
-#if 0
-void e_table_specification_save_to_file (ETableSpecification *specification,
+int e_table_specification_save_to_file (ETableSpecification *specification,
const char *filename);
char *e_table_specification_save_to_string (ETableSpecification *specification);
xmlNode *e_table_specification_save_to_node (ETableSpecification *specification,
xmlDoc *doc);
-#endif
+ETableSpecification *e_table_specification_duplicate (ETableSpecification *spec);
#endif /* _E_TABLE_SPECIFICATION_H_ */