aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-20 02:43:09 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-20 02:43:09 +0800
commit4b41929f49d24edfe9c11995cee22df8edf3f553 (patch)
treec2054214a774adcbfdcd1c3f9d14b1829368ff0a
parent86ff7f5d763daa0997194baca17383e4fd849658 (diff)
downloadgsoc2013-evolution-4b41929f49d24edfe9c11995cee22df8edf3f553.tar
gsoc2013-evolution-4b41929f49d24edfe9c11995cee22df8edf3f553.tar.gz
gsoc2013-evolution-4b41929f49d24edfe9c11995cee22df8edf3f553.tar.bz2
gsoc2013-evolution-4b41929f49d24edfe9c11995cee22df8edf3f553.tar.lz
gsoc2013-evolution-4b41929f49d24edfe9c11995cee22df8edf3f553.tar.xz
gsoc2013-evolution-4b41929f49d24edfe9c11995cee22df8edf3f553.tar.zst
gsoc2013-evolution-4b41929f49d24edfe9c11995cee22df8edf3f553.zip
Remove unused e_table_invert_selection().
-rw-r--r--doc/reference/evolution-util/evolution-util-sections.txt1
-rw-r--r--e-util/e-table.c14
-rw-r--r--e-util/e-table.h1
3 files changed, 0 insertions, 16 deletions
diff --git a/doc/reference/evolution-util/evolution-util-sections.txt b/doc/reference/evolution-util/evolution-util-sections.txt
index 9df7b9b3e9..f5e58cb782 100644
--- a/doc/reference/evolution-util/evolution-util-sections.txt
+++ b/doc/reference/evolution-util/evolution-util-sections.txt
@@ -3351,7 +3351,6 @@ e_table_drag_source_set
e_table_drag_source_unset
e_table_drag_begin
e_table_select_all
-e_table_invert_selection
e_table_right_click_up
e_table_commit_click_to_add
e_table_freeze_state_change
diff --git a/e-util/e-table.c b/e-util/e-table.c
index 6d7ebbbcf3..1777474984 100644
--- a/e-util/e-table.c
+++ b/e-util/e-table.c
@@ -2157,20 +2157,6 @@ e_table_select_all (ETable *table)
}
/**
- * e_table_invert_selection:
- * @table: The #ETable to modify
- *
- * Inverts the selection in @table.
- **/
-void
-e_table_invert_selection (ETable *table)
-{
- g_return_if_fail (E_IS_TABLE (table));
-
- e_selection_model_invert_selection (E_SELECTION_MODEL (table->selection));
-}
-
-/**
* e_table_get_printable:
* @e_table: #ETable to query
*
diff --git a/e-util/e-table.h b/e-util/e-table.h
index f3b36d0a5e..c18ca084fb 100644
--- a/e-util/e-table.h
+++ b/e-util/e-table.h
@@ -387,7 +387,6 @@ GdkDragContext *e_table_drag_begin (ETable *table,
/* selection stuff */
void e_table_select_all (ETable *table);
-void e_table_invert_selection (ETable *table);
/* This function is only needed in single_selection_mode. */
void e_table_right_click_up (ETable *table);