diff options
author | Xan Lopez <xan@src.gnome.org> | 2008-02-11 02:26:22 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2008-02-11 02:26:22 +0800 |
commit | a6753733856e098e2500487fee87620f72dea530 (patch) | |
tree | 1f5a7d8ae16bd2e3070bbdc31791eef96952a233 /src/ephy-toolbar-editor.c | |
parent | 9a3e4ebc55e11c3b00b0e7464b11ecec121bc6f2 (diff) | |
download | gsoc2013-epiphany-a6753733856e098e2500487fee87620f72dea530.tar.gz gsoc2013-epiphany-a6753733856e098e2500487fee87620f72dea530.tar.zst gsoc2013-epiphany-a6753733856e098e2500487fee87620f72dea530.zip |
Use G_DEFINE_TYPE* when possible in src/ (#515601)
svn path=/trunk/; revision=7927
Diffstat (limited to 'src/ephy-toolbar-editor.c')
-rw-r--r-- | src/ephy-toolbar-editor.c | 39 |
1 files changed, 5 insertions, 34 deletions
diff --git a/src/ephy-toolbar-editor.c b/src/ephy-toolbar-editor.c index ed1c900f0..043aa3e53 100644 --- a/src/ephy-toolbar-editor.c +++ b/src/ephy-toolbar-editor.c @@ -93,7 +93,7 @@ enum PROP_WINDOW }; -static GObjectClass *parent_class = NULL; +G_DEFINE_TYPE (EphyToolbarEditor, ephy_toolbar_editor, GTK_TYPE_DIALOG) static gboolean row_is_separator (GtkTreeModel *model, @@ -180,8 +180,9 @@ ephy_toolbar_editor_constructor (GType type, char *pref; int i; - object = parent_class->constructor (type, n_construct_properties, - construct_params); + object = G_OBJECT_CLASS (ephy_toolbar_editor_parent_class)->constructor (type, + n_construct_properties, + construct_params); dialog = GTK_WIDGET (object); priv = EPHY_TOOLBAR_EDITOR (object)->priv; @@ -305,7 +306,7 @@ ephy_toolbar_editor_finalize (GObject *object) g_object_set_data (G_OBJECT (priv->window), DATA_KEY, NULL); - parent_class->finalize (object); + G_OBJECT_CLASS (ephy_toolbar_editor_parent_class)->finalize (object); } static void @@ -340,8 +341,6 @@ ephy_toolbar_editor_class_init (EphyToolbarEditorClass *klass) GObjectClass *object_class = G_OBJECT_CLASS (klass); GtkDialogClass *dialog_class = GTK_DIALOG_CLASS (klass); - parent_class = g_type_class_peek_parent (klass); - object_class->constructor = ephy_toolbar_editor_constructor; object_class->finalize = ephy_toolbar_editor_finalize; object_class->get_property = ephy_toolbar_editor_get_property; @@ -361,34 +360,6 @@ ephy_toolbar_editor_class_init (EphyToolbarEditorClass *klass) g_type_class_add_private (object_class, sizeof (EphyToolbarEditorPrivate)); } -GType -ephy_toolbar_editor_get_type (void) -{ - static GType type = 0; - - if (G_UNLIKELY (type == 0)) - { - const GTypeInfo our_info = - { - sizeof (EphyToolbarEditorClass), - NULL, - NULL, - (GClassInitFunc) ephy_toolbar_editor_class_init, - NULL, - NULL, - sizeof (EphyToolbarEditor), - 0, - (GInstanceInitFunc) ephy_toolbar_editor_init - }; - - type = g_type_register_static (GTK_TYPE_DIALOG, - "EphyToolbarEditor", - &our_info, 0); - } - - return type; -} - GtkWidget * ephy_toolbar_editor_show (EphyWindow *window) { |