[evolution] GalViewFactory: Remove get_title() method.
- From: Matthew Barnes <mbarnes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] GalViewFactory: Remove get_title() method.
- Date: Fri, 5 Jul 2013 20:41:03 +0000 (UTC)
commit c361af739614d5a4bdc90741128bb25c0907e015
Author: Matthew Barnes <mbarnes redhat com>
Date: Thu Jul 4 23:47:28 2013 -0400
GalViewFactory: Remove get_title() method.
No longer used.
Removed functions:
gal_view_factory_get_title()
.../gui/widgets/gal-view-factory-minicard.c | 7 ----
calendar/gui/calendar-view-factory.c | 31 --------------------
.../evolution-util/evolution-util-sections.txt | 1 -
e-util/gal-view-factory-etable.c | 7 ----
e-util/gal-view-factory.c | 19 ------------
e-util/gal-view-factory.h | 2 -
6 files changed, 0 insertions(+), 67 deletions(-)
---
diff --git a/addressbook/gui/widgets/gal-view-factory-minicard.c
b/addressbook/gui/widgets/gal-view-factory-minicard.c
index a4700db..5efd699 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;
}
diff --git a/calendar/gui/calendar-view-factory.c b/calendar/gui/calendar-view-factory.c
index 0d1908e..d84f770 100644
--- a/calendar/gui/calendar-view-factory.c
+++ b/calendar/gui/calendar-view-factory.c
@@ -40,8 +40,6 @@ struct _CalendarViewFactoryPrivate {
};
static const gchar *
- calendar_view_factory_get_title (GalViewFactory *factory);
-static const gchar *
calendar_view_factory_get_type_code
(GalViewFactory *factory);
static GalView *
@@ -61,7 +59,6 @@ calendar_view_factory_class_init (CalendarViewFactoryClass *class)
g_type_class_add_private (class, sizeof (CalendarViewFactoryPrivate));
gal_view_factory_class = GAL_VIEW_FACTORY_CLASS (class);
- gal_view_factory_class->get_title = calendar_view_factory_get_title;
gal_view_factory_class->get_type_code = calendar_view_factory_get_type_code;
gal_view_factory_class->new_view = calendar_view_factory_new_view;
}
@@ -73,34 +70,6 @@ calendar_view_factory_init (CalendarViewFactory *cal_view_factory)
CALENDAR_VIEW_FACTORY_GET_PRIVATE (cal_view_factory);
}
-/* get_title method for the calendar view factory */
-static const gchar *
-calendar_view_factory_get_title (GalViewFactory *factory)
-{
- CalendarViewFactory *cal_view_factory;
- CalendarViewFactoryPrivate *priv;
-
- cal_view_factory = CALENDAR_VIEW_FACTORY (factory);
- priv = cal_view_factory->priv;
-
- switch (priv->view_type) {
- case GNOME_CAL_DAY_VIEW:
- return _("Day View");
-
- case GNOME_CAL_WORK_WEEK_VIEW:
- return _("Work Week View");
-
- case GNOME_CAL_WEEK_VIEW:
- return _("Week View");
-
- case GNOME_CAL_MONTH_VIEW:
- return _("Month View");
-
- default:
- g_return_val_if_reached (NULL);
- }
-}
-
/* get_type_code method for the calendar view factory */
static const gchar *
calendar_view_factory_get_type_code (GalViewFactory *factory)
diff --git a/doc/reference/evolution-util/evolution-util-sections.txt
b/doc/reference/evolution-util/evolution-util-sections.txt
index e769896..7c7534d 100644
--- a/doc/reference/evolution-util/evolution-util-sections.txt
+++ b/doc/reference/evolution-util/evolution-util-sections.txt
@@ -4645,7 +4645,6 @@ gal_view_etable_get_type
<FILE>gal-view-factory</FILE>
<TITLE>GalViewFactory</TITLE>
GalViewFactory
-gal_view_factory_get_title
gal_view_factory_get_type_code
gal_view_factory_new_view
<SUBSECTION Standard>
diff --git a/e-util/gal-view-factory-etable.c b/e-util/gal-view-factory-etable.c
index cfa7bc2..0608288 100644
--- a/e-util/gal-view-factory-etable.c
+++ b/e-util/gal-view-factory-etable.c
@@ -109,12 +109,6 @@ view_factory_etable_dispose (GObject *object)
}
static const gchar *
-view_factory_etable_get_title (GalViewFactory *factory)
-{
- return _("Table");
-}
-
-static const gchar *
view_factory_etable_get_type_code (GalViewFactory *factory)
{
return "etable";
@@ -145,7 +139,6 @@ gal_view_factory_etable_class_init (GalViewFactoryEtableClass *class)
object_class->dispose = view_factory_etable_dispose;
view_factory_class = GAL_VIEW_FACTORY_CLASS (class);
- view_factory_class->get_title = view_factory_etable_get_title;
view_factory_class->get_type_code = view_factory_etable_get_type_code;
view_factory_class->new_view = view_factory_etable_new_view;
diff --git a/e-util/gal-view-factory.c b/e-util/gal-view-factory.c
index 0e0dde0..c6de38a 100644
--- a/e-util/gal-view-factory.c
+++ b/e-util/gal-view-factory.c
@@ -41,25 +41,6 @@ gal_view_factory_init (GalViewFactory *factory)
}
/**
- * gal_view_factory_get_title:
- * @factory: a #GalViewFactory
- *
- * Returns: The title of the factory.
- */
-const gchar *
-gal_view_factory_get_title (GalViewFactory *factory)
-{
- GalViewFactoryClass *class;
-
- g_return_val_if_fail (GAL_IS_VIEW_FACTORY (factory), NULL);
-
- class = GAL_VIEW_FACTORY_GET_CLASS (factory);
- g_return_val_if_fail (class->get_title != NULL, NULL);
-
- return class->get_title (factory);
-}
-
-/**
* gal_view_factory_get_type_code:
* @factory: a #GalViewFactory
*
diff --git a/e-util/gal-view-factory.h b/e-util/gal-view-factory.h
index abdcacd..2a67dbe 100644
--- a/e-util/gal-view-factory.h
+++ b/e-util/gal-view-factory.h
@@ -62,14 +62,12 @@ struct _GalViewFactoryClass {
GObjectClass parent_class;
/* Methods */
- const gchar * (*get_title) (GalViewFactory *factory);
const gchar * (*get_type_code) (GalViewFactory *factory);
GalView * (*new_view) (GalViewFactory *factory,
const gchar *name);
};
GType gal_view_factory_get_type (void);
-const gchar * gal_view_factory_get_title (GalViewFactory *factory);
/* Returns the code for use in identifying this type of object in the
* view list. This identifier should identify this as being the
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]