diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-07-05 11:47:28 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-06 04:40:49 +0800 |
commit | c361af739614d5a4bdc90741128bb25c0907e015 (patch) | |
tree | fafe5058cafa939808ae9138f4dbb4bc38e0277c /addressbook/gui/widgets | |
parent | 7193739a13cacee281c66aeed48d36da90ddafcc (diff) | |
download | gsoc2013-evolution-c361af739614d5a4bdc90741128bb25c0907e015.tar gsoc2013-evolution-c361af739614d5a4bdc90741128bb25c0907e015.tar.gz gsoc2013-evolution-c361af739614d5a4bdc90741128bb25c0907e015.tar.bz2 gsoc2013-evolution-c361af739614d5a4bdc90741128bb25c0907e015.tar.lz gsoc2013-evolution-c361af739614d5a4bdc90741128bb25c0907e015.tar.xz gsoc2013-evolution-c361af739614d5a4bdc90741128bb25c0907e015.tar.zst gsoc2013-evolution-c361af739614d5a4bdc90741128bb25c0907e015.zip |
GalViewFactory: Remove get_title() method.
No longer used.
Removed functions:
gal_view_factory_get_title()
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/gal-view-factory-minicard.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/addressbook/gui/widgets/gal-view-factory-minicard.c b/addressbook/gui/widgets/gal-view-factory-minicard.c index a4700db480..5efd6995ed 100644 --- a/addressbook/gui/widgets/gal-view-factory-minicard.c +++ b/addressbook/gui/widgets/gal-view-factory-minicard.c @@ -33,12 +33,6 @@ G_DEFINE_TYPE ( gal_view_factory_minicard, GAL_TYPE_VIEW_FACTORY) static const gchar * -gal_view_factory_minicard_get_title (GalViewFactory *factory) -{ - return _("Card View"); -} - -static const gchar * gal_view_factory_minicard_get_type_code (GalViewFactory *factory) { return "minicard"; @@ -57,7 +51,6 @@ gal_view_factory_minicard_class_init (GalViewFactoryMinicardClass *minicard_clas GalViewFactoryClass *view_factory_class; view_factory_class = GAL_VIEW_FACTORY_CLASS (minicard_class); - view_factory_class->get_title = gal_view_factory_minicard_get_title; view_factory_class->get_type_code = gal_view_factory_minicard_get_type_code; view_factory_class->new_view = gal_view_factory_minicard_new_view; } |