diff options
author | Li Yuan <li.yuan@sun.com> | 2005-03-24 16:30:25 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2005-03-24 16:30:25 +0800 |
commit | 7b64ef0f638c7b775ffb8aecc7db771189b09ccd (patch) | |
tree | 3b74b42cd54ce8043400256876447fb354433afd /addressbook/gui | |
parent | d72da37be9a545ddcb8aba164a6defa6e74cbc22 (diff) | |
download | gsoc2013-evolution-7b64ef0f638c7b775ffb8aecc7db771189b09ccd.tar.gz gsoc2013-evolution-7b64ef0f638c7b775ffb8aecc7db771189b09ccd.tar.zst gsoc2013-evolution-7b64ef0f638c7b775ffb8aecc7db771189b09ccd.zip |
remove the edit function.
2005-03-16 Li Yuan <li.yuan@sun.com>
* gui/widgets/gal-view-minicard.c: (gal_view_minicard_class_init):
remove the edit function.
Fixes #40762
svn path=/trunk/; revision=29095
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/gal-view-minicard.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/addressbook/gui/widgets/gal-view-minicard.c b/addressbook/gui/widgets/gal-view-minicard.c index da60497cdb..7f07d2d81d 100644 --- a/addressbook/gui/widgets/gal-view-minicard.c +++ b/addressbook/gui/widgets/gal-view-minicard.c @@ -17,12 +17,6 @@ static GalViewClass *gal_view_minicard_parent_class; -static void -gal_view_minicard_edit (GalView *view, GtkWindow *parent_window) -{ - /* GalViewMinicard *minicard_view = GAL_VIEW_MINICARD(view); */ -} - static void gal_view_minicard_load (GalView *view, const char *filename) @@ -106,7 +100,7 @@ gal_view_minicard_class_init (GObjectClass *object_class) GalViewClass *gal_view_class = GAL_VIEW_CLASS(object_class); gal_view_minicard_parent_class = g_type_class_ref (PARENT_TYPE); - gal_view_class->edit = gal_view_minicard_edit ; + gal_view_class->edit = NULL ; gal_view_class->load = gal_view_minicard_load ; gal_view_class->save = gal_view_minicard_save ; gal_view_class->get_title = gal_view_minicard_get_title ; |