aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-07-02 04:08:27 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-07-02 22:34:12 +0800
commit058c39cd611960c2b0ed0b76f615d603fb44a7e3 (patch)
treef61bf4d9dc3c9024806ad053984b5918d290f547
parent23d786f06ad5c0a2827e22a129db7fbb1693b537 (diff)
downloadgsoc2013-evolution-058c39cd611960c2b0ed0b76f615d603fb44a7e3.tar
gsoc2013-evolution-058c39cd611960c2b0ed0b76f615d603fb44a7e3.tar.gz
gsoc2013-evolution-058c39cd611960c2b0ed0b76f615d603fb44a7e3.tar.bz2
gsoc2013-evolution-058c39cd611960c2b0ed0b76f615d603fb44a7e3.tar.lz
gsoc2013-evolution-058c39cd611960c2b0ed0b76f615d603fb44a7e3.tar.xz
gsoc2013-evolution-058c39cd611960c2b0ed0b76f615d603fb44a7e3.tar.zst
gsoc2013-evolution-058c39cd611960c2b0ed0b76f615d603fb44a7e3.zip
Remove e_table_get_state().
No longer used.
-rw-r--r--doc/reference/evolution-util/evolution-util-sections.txt1
-rw-r--r--e-util/e-table.c21
-rw-r--r--e-util/e-table.h1
3 files changed, 0 insertions, 23 deletions
diff --git a/doc/reference/evolution-util/evolution-util-sections.txt b/doc/reference/evolution-util/evolution-util-sections.txt
index 35f32d58d6..ca1299b207 100644
--- a/doc/reference/evolution-util/evolution-util-sections.txt
+++ b/doc/reference/evolution-util/evolution-util-sections.txt
@@ -3314,7 +3314,6 @@ ETableCursorLoc
ETable
e_table_construct
e_table_new
-e_table_get_state
e_table_save_state
e_table_get_state_object
e_table_set_state
diff --git a/e-util/e-table.c b/e-util/e-table.c
index 10ddf632e2..c8a8417e5e 100644
--- a/e-util/e-table.c
+++ b/e-util/e-table.c
@@ -1714,27 +1714,6 @@ e_table_get_state_object (ETable *e_table)
}
/**
- * e_table_get_state:
- * @e_table: The #ETable to act on.
- *
- * Builds a state object based on the current state and returns the
- * string corresponding to that state.
- *
- * Return value:
- * A string describing the current state of the #ETable.
- **/
-gchar *e_table_get_state (ETable *e_table)
-{
- ETableState *state;
- gchar *string;
-
- state = e_table_get_state_object (e_table);
- string = e_table_state_save_to_string (state);
- g_object_unref (state);
- return string;
-}
-
-/**
* e_table_save_state:
* @e_table: The #ETable to act on
* @filename: name of the file to save to
diff --git a/e-util/e-table.h b/e-util/e-table.h
index ee0d553c2b..3f2742bb89 100644
--- a/e-util/e-table.h
+++ b/e-util/e-table.h
@@ -276,7 +276,6 @@ GtkWidget * e_table_new (ETableModel *etm,
ETableSpecification *specification);
/* To save the state */
-gchar * e_table_get_state (ETable *e_table);
void e_table_save_state (ETable *e_table,
const gchar *filename);
ETableState * e_table_get_state_object (ETable *e_table);