aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-shell.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-09-28 02:11:40 +0800
committerChristian Persch <chpe@src.gnome.org>2004-09-28 02:11:40 +0800
commit2529a2fd46460294395c8c3131b9c9bf8dcb4196 (patch)
tree59ea0b4c529b10ffe4ccd590c50dbb54fb7cd8d7 /src/ephy-shell.c
parent7503aa46cc81f65227edfdfb10946fbf089acf30 (diff)
downloadgsoc2013-epiphany-2529a2fd46460294395c8c3131b9c9bf8dcb4196.tar
gsoc2013-epiphany-2529a2fd46460294395c8c3131b9c9bf8dcb4196.tar.gz
gsoc2013-epiphany-2529a2fd46460294395c8c3131b9c9bf8dcb4196.tar.bz2
gsoc2013-epiphany-2529a2fd46460294395c8c3131b9c9bf8dcb4196.tar.lz
gsoc2013-epiphany-2529a2fd46460294395c8c3131b9c9bf8dcb4196.tar.xz
gsoc2013-epiphany-2529a2fd46460294395c8c3131b9c9bf8dcb4196.tar.zst
gsoc2013-epiphany-2529a2fd46460294395c8c3131b9c9bf8dcb4196.zip
Don't reference private objects from public headers. Fixes bug #153766.
2004-09-27 Christian Persch <chpe@cvs.gnome.org> * src/bookmarks/ephy-bookmark-action.c: (remove_from_model), (move_in_model): * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_get_toolbars_model): * src/bookmarks/ephy-bookmarks.h: * src/bookmarks/ephy-bookmarksbar.c: (ephy_bookmarksbar_set_property): * src/bookmarks/ephy-topic-action.c: (remove_from_model), (move_in_model): * src/ephy-shell.c: (ephy_shell_get_toolbars_model): Don't reference private objects from public headers. Fixes bug #153766.
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r--src/ephy-shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c
index 2718ea538..e04b275d1 100644
--- a/src/ephy-shell.c
+++ b/src/ephy-shell.c
@@ -678,7 +678,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 ();
@@ -691,7 +691,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);