aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-07-05 21:18:48 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-07-06 04:40:50 +0800
commit2ce22e2506d9e5d396b91bbe3fdbc5a623e1552d (patch)
tree04dd8ca6b1f5ba53f512e12b68e3fead5b5126c1
parent8fd95b78a4b93c44eec7cf110f61e898575c198b (diff)
downloadgsoc2013-evolution-2ce22e2506d9e5d396b91bbe3fdbc5a623e1552d.tar
gsoc2013-evolution-2ce22e2506d9e5d396b91bbe3fdbc5a623e1552d.tar.gz
gsoc2013-evolution-2ce22e2506d9e5d396b91bbe3fdbc5a623e1552d.tar.bz2
gsoc2013-evolution-2ce22e2506d9e5d396b91bbe3fdbc5a623e1552d.tar.lz
gsoc2013-evolution-2ce22e2506d9e5d396b91bbe3fdbc5a623e1552d.tar.xz
gsoc2013-evolution-2ce22e2506d9e5d396b91bbe3fdbc5a623e1552d.tar.zst
gsoc2013-evolution-2ce22e2506d9e5d396b91bbe3fdbc5a623e1552d.zip
Remove unused gal_view_collection_set_default_view().
-rw-r--r--doc/reference/evolution-util/evolution-util-sections.txt1
-rw-r--r--e-util/gal-view-collection.c10
-rw-r--r--e-util/gal-view-collection.h3
3 files changed, 0 insertions, 14 deletions
diff --git a/doc/reference/evolution-util/evolution-util-sections.txt b/doc/reference/evolution-util/evolution-util-sections.txt
index b2d36fd7ea..88156b1b92 100644
--- a/doc/reference/evolution-util/evolution-util-sections.txt
+++ b/doc/reference/evolution-util/evolution-util-sections.txt
@@ -4604,7 +4604,6 @@ gal_view_collection_load_view_from_file
gal_view_collection_append_with_title
gal_view_collection_set_nth_view
gal_view_collection_get_default_view
-gal_view_collection_set_default_view
<SUBSECTION Standard>
GAL_VIEW_COLLECTION
GAL_IS_VIEW_COLLECTION
diff --git a/e-util/gal-view-collection.c b/e-util/gal-view-collection.c
index ad3386f197..814f751659 100644
--- a/e-util/gal-view-collection.c
+++ b/e-util/gal-view-collection.c
@@ -702,13 +702,3 @@ gal_view_collection_get_default_view (GalViewCollection *collection)
return collection->default_view;
}
-void
-gal_view_collection_set_default_view (GalViewCollection *collection,
- const gchar *id)
-{
- g_free (collection->default_view);
- collection->default_view = g_strdup (id);
- gal_view_collection_changed (collection);
- collection->default_view_built_in = FALSE;
-}
-
diff --git a/e-util/gal-view-collection.h b/e-util/gal-view-collection.h
index e169fe8946..3c32f8c3bd 100644
--- a/e-util/gal-view-collection.h
+++ b/e-util/gal-view-collection.h
@@ -149,9 +149,6 @@ const gchar * gal_view_collection_set_nth_view
const gchar * gal_view_collection_get_default_view
(GalViewCollection *collection);
-void gal_view_collection_set_default_view
- (GalViewCollection *collection,
- const gchar *id);
G_END_DECLS