diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-07-05 10:19:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-06 04:40:49 +0800 |
commit | 7193739a13cacee281c66aeed48d36da90ddafcc (patch) | |
tree | 691d688849b4c3ffffc4c14e89151aabde940abc /e-util/gal-view.c | |
parent | af39ee96f037574e18295f429f064cb66e051c8f (diff) | |
download | gsoc2013-evolution-7193739a13cacee281c66aeed48d36da90ddafcc.tar gsoc2013-evolution-7193739a13cacee281c66aeed48d36da90ddafcc.tar.gz gsoc2013-evolution-7193739a13cacee281c66aeed48d36da90ddafcc.tar.bz2 gsoc2013-evolution-7193739a13cacee281c66aeed48d36da90ddafcc.tar.lz gsoc2013-evolution-7193739a13cacee281c66aeed48d36da90ddafcc.tar.xz gsoc2013-evolution-7193739a13cacee281c66aeed48d36da90ddafcc.tar.zst gsoc2013-evolution-7193739a13cacee281c66aeed48d36da90ddafcc.zip |
GalView: Remove edit() method.
No longer used.
Removed functions:
gal_view_edit()
Diffstat (limited to 'e-util/gal-view.c')
-rw-r--r-- | e-util/gal-view.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/e-util/gal-view.c b/e-util/gal-view.c index 4302988a6e..f0e3e66436 100644 --- a/e-util/gal-view.c +++ b/e-util/gal-view.c @@ -129,26 +129,6 @@ gal_view_init (GalView *view) } /** - * gal_view_edit - * @view: The view to edit - * @parent: the parent window. - */ -void -gal_view_edit (GalView *view, - GtkWindow *parent) -{ - GalViewClass *class; - - g_return_if_fail (GAL_IS_VIEW (view)); - g_return_if_fail (GTK_IS_WINDOW (parent)); - - class = GAL_VIEW_GET_CLASS (view); - g_return_if_fail (class->edit != NULL); - - class->edit (view, parent); -} - -/** * gal_view_load * @view: The view to load to * @filename: The file to load from |