diff options
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r-- | src/ephy-shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 8b67e3d40..b63f49e21 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -656,7 +656,7 @@ ephy_shell_get_toolbars_model (EphyShell *shell, gboolean fullscreen) if (shell->priv->toolbars_model == NULL) { EphyBookmarks *bookmarks; - EggToolbarsModel *bookmarksbar_model; + GObject *bookmarksbar_model; shell->priv->toolbars_model = ephy_toolbars_model_new (); @@ -669,7 +669,7 @@ ephy_shell_get_toolbars_model (EphyShell *shell, gboolean fullscreen) /* ok, now we can load the model */ ephy_toolbars_model_load - (EPHY_TOOLBARS_MODEL (shell->priv->toolbars_model)); + (EPHY_TOOLBARS_MODEL (shell->priv->toolbars_model)); } return G_OBJECT (shell->priv->toolbars_model); |