diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-07-05 21:16:08 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-06 04:40:50 +0800 |
commit | 8fd95b78a4b93c44eec7cf110f61e898575c198b (patch) | |
tree | 8a7f22bd1089d2cb23435b17e92f05410ddb4cf9 /e-util | |
parent | 2996a0503bc07c825b321ca21296b5349362f5f0 (diff) | |
download | gsoc2013-evolution-8fd95b78a4b93c44eec7cf110f61e898575c198b.tar.gz gsoc2013-evolution-8fd95b78a4b93c44eec7cf110f61e898575c198b.tar.zst gsoc2013-evolution-8fd95b78a4b93c44eec7cf110f61e898575c198b.zip |
Remove unused gal_view_collection_copy_view().
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/gal-view-collection.c | 36 | ||||
-rw-r--r-- | e-util/gal-view-collection.h | 2 |
2 files changed, 0 insertions, 38 deletions
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. */ |