aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-07-05 21:16:08 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-07-06 04:40:50 +0800
commit8fd95b78a4b93c44eec7cf110f61e898575c198b (patch)
tree8a7f22bd1089d2cb23435b17e92f05410ddb4cf9
parent2996a0503bc07c825b321ca21296b5349362f5f0 (diff)
downloadgsoc2013-evolution-8fd95b78a4b93c44eec7cf110f61e898575c198b.tar
gsoc2013-evolution-8fd95b78a4b93c44eec7cf110f61e898575c198b.tar.gz
gsoc2013-evolution-8fd95b78a4b93c44eec7cf110f61e898575c198b.tar.bz2
gsoc2013-evolution-8fd95b78a4b93c44eec7cf110f61e898575c198b.tar.lz
gsoc2013-evolution-8fd95b78a4b93c44eec7cf110f61e898575c198b.tar.xz
gsoc2013-evolution-8fd95b78a4b93c44eec7cf110f61e898575c198b.tar.zst
gsoc2013-evolution-8fd95b78a4b93c44eec7cf110f61e898575c198b.zip
Remove unused gal_view_collection_copy_view().
-rw-r--r--doc/reference/evolution-util/evolution-util-sections.txt1
-rw-r--r--e-util/gal-view-collection.c36
-rw-r--r--e-util/gal-view-collection.h2
3 files changed, 0 insertions, 39 deletions
diff --git a/doc/reference/evolution-util/evolution-util-sections.txt b/doc/reference/evolution-util/evolution-util-sections.txt
index 5e9f04e47f..b2d36fd7ea 100644
--- a/doc/reference/evolution-util/evolution-util-sections.txt
+++ b/doc/reference/evolution-util/evolution-util-sections.txt
@@ -4597,7 +4597,6 @@ gal_view_collection_get_view
gal_view_collection_get_view_item
gal_view_collection_get_view_index_by_id
gal_view_collection_delete_view
-gal_view_collection_copy_view
gal_view_collection_load
gal_view_collection_save
gal_view_collection_loaded
diff --git a/e-util/gal-view-collection.c b/e-util/gal-view-collection.c
index 99601ef483..ad3386f197 100644
--- a/e-util/gal-view-collection.c
+++ b/e-util/gal-view-collection.c
@@ -608,42 +608,6 @@ gal_view_collection_delete_view (GalViewCollection *collection,
gal_view_collection_changed (collection);
}
-void
-gal_view_collection_copy_view (GalViewCollection *collection,
- gint i)
-{
- GalViewCollectionItem *item;
- GalView *view;
- GalViewClass *view_class;
-
- g_return_if_fail (GAL_IS_VIEW_COLLECTION (collection));
- g_return_if_fail (i >= 0 && i < collection->view_count);
-
- view = collection->view_data[i]->view;
- view_class = GAL_VIEW_GET_CLASS (view);
-
- item = g_new (GalViewCollectionItem, 1);
- item->ever_changed = TRUE;
- item->changed = FALSE;
- item->built_in = FALSE;
- item->title = g_strdup (gal_view_get_title (view));
- item->type = g_strdup (view_class->type_code);
- item->id = gal_view_generate_id (collection, view);
- item->filename = g_strdup_printf ("%s.galview", item->id);
- item->view = gal_view_clone (view);
- item->collection = collection;
-
- item->view_changed_id = g_signal_connect (
- item->view, "changed",
- G_CALLBACK (view_changed), item);
-
- collection->view_data = g_renew (GalViewCollectionItem *, collection->view_data, collection->view_count + 1);
- collection->view_data[collection->view_count] = item;
- collection->view_count++;
-
- gal_view_collection_changed (collection);
-}
-
gboolean
gal_view_collection_loaded (GalViewCollection *collection)
{
diff --git a/e-util/gal-view-collection.h b/e-util/gal-view-collection.h
index b99f734922..e169fe8946 100644
--- a/e-util/gal-view-collection.h
+++ b/e-util/gal-view-collection.h
@@ -123,8 +123,6 @@ gint gal_view_collection_get_view_index_by_id
/* Manipulate the view collection */
void gal_view_collection_delete_view (GalViewCollection *collection,
gint i);
-void gal_view_collection_copy_view (GalViewCollection *collection,
- gint i);
/* Call set_storage_directories and add factories for anything
* that might be found there before doing either of these. */