aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-selection-model.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-20 02:44:39 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-20 02:57:32 +0800
commita6794091283aef8928130e70a8becf6c15afa77d (patch)
tree3e7121dbd72e311b5d7afa882926f0ee7fbb53a6 /e-util/e-selection-model.c
parent4b41929f49d24edfe9c11995cee22df8edf3f553 (diff)
downloadgsoc2013-evolution-a6794091283aef8928130e70a8becf6c15afa77d.tar
gsoc2013-evolution-a6794091283aef8928130e70a8becf6c15afa77d.tar.gz
gsoc2013-evolution-a6794091283aef8928130e70a8becf6c15afa77d.tar.bz2
gsoc2013-evolution-a6794091283aef8928130e70a8becf6c15afa77d.tar.lz
gsoc2013-evolution-a6794091283aef8928130e70a8becf6c15afa77d.tar.xz
gsoc2013-evolution-a6794091283aef8928130e70a8becf6c15afa77d.tar.zst
gsoc2013-evolution-a6794091283aef8928130e70a8becf6c15afa77d.zip
Remove unused e_selection_model_invert_selection().
Diffstat (limited to 'e-util/e-selection-model.c')
-rw-r--r--e-util/e-selection-model.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/e-util/e-selection-model.c b/e-util/e-selection-model.c
index 698dcfe9fb..31d6657230 100644
--- a/e-util/e-selection-model.c
+++ b/e-util/e-selection-model.c
@@ -341,26 +341,6 @@ e_selection_model_select_all (ESelectionModel *model)
class->select_all (model);
}
-/**
- * e_selection_model_invert_selection
- * @model: #ESelectionModel to invert
- *
- * This routine inverts all the rows in the given
- * #ESelectionModel.
- */
-void
-e_selection_model_invert_selection (ESelectionModel *model)
-{
- ESelectionModelClass *class;
-
- g_return_if_fail (E_IS_SELECTION_MODEL (model));
-
- class = E_SELECTION_MODEL_GET_CLASS (model);
- g_return_if_fail (class->invert_selection != NULL);
-
- class->invert_selection (model);
-}
-
gint
e_selection_model_row_count (ESelectionModel *model)
{