aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/gal-view-factory.c
diff options
context:
space:
mode:
Diffstat (limited to 'e-util/gal-view-factory.c')
-rw-r--r--e-util/gal-view-factory.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/e-util/gal-view-factory.c b/e-util/gal-view-factory.c
index d235a63d86..9d0ef7596f 100644
--- a/e-util/gal-view-factory.c
+++ b/e-util/gal-view-factory.c
@@ -68,21 +68,20 @@ gal_view_factory_get_type_code (GalViewFactory *factory)
/**
* gal_view_factory_new_view:
* @factory: a #GalViewFactory
- * @name: the name for the view
+ * @title: the title for the view
*
* Returns: The new view
*/
GalView *
gal_view_factory_new_view (GalViewFactory *factory,
- const gchar *name)
+ const gchar *title)
{
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->new_view != NULL, NULL);
- return class->new_view (factory, name);
+ return g_object_new (class->gal_view_type, "title", title, NULL);
}