aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-01-21 20:33:23 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-01-21 20:33:23 +0800
commit3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4 (patch)
treef3a6007429aee289b81f6fcc555ead9abfd83caf /src
parent98a7051020195ab2b8a1174e60ab72e950dda42e (diff)
downloadgsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar.gz
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar.bz2
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar.lz
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar.xz
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.tar.zst
gsoc2013-epiphany-3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4.zip
Api changes.
2003-01-21 Marco Pesenti Gritti <marco@it.gnome.org> * embed/mozilla/BaseProtocolContentHandler.cpp: * embed/mozilla/StartHereProtocolHandler.cpp: Api changes. * embed/ephy-embed-shell.c: (ephy_embed_shell_finalize): * embed/ephy-favicon-cache.c: (ephy_favicon_cache_finalize): * embed/ephy-history.c: (ephy_history_host_visited), (ephy_history_set_page_title), (ephy_history_remove): * lib/widgets/ephy-spinner.c: (ephy_spinner_expose), (ephy_spinner_size_request): * lib/widgets/ephy-spinner.h: * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_finalize): * src/ephy-shell.c: (ephy_shell_finalize), (ephy_shell_get_autocompletion): * src/ephy-spinner-action.c: (create_tool_item): Nicer spinner size. Fix references problem and a lot of logs to make it easy to debug it.
Diffstat (limited to 'src')
-rw-r--r--src/ephy-shell.c10
-rw-r--r--src/ephy-spinner-action.c2
2 files changed, 4 insertions, 8 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c
index 11954632d..e07203775 100644
--- a/src/ephy-shell.c
+++ b/src/ephy-shell.c
@@ -231,6 +231,7 @@ ephy_shell_finalize (GObject *object)
g_assert (ephy_shell == NULL);
+ LOG ("Unref session")
if (gs->priv->session)
{
g_return_if_fail (IS_SESSION(gs->priv->session));
@@ -240,11 +241,13 @@ ephy_shell_finalize (GObject *object)
g_object_unref (G_OBJECT (gs->priv->session));
}
+ LOG ("Unref autocompletion")
if (gs->priv->autocompletion)
{
g_object_unref (gs->priv->autocompletion);
}
+ LOG ("Unref bookmarks")
if (gs->priv->bookmarks)
{
g_object_unref (gs->priv->bookmarks);
@@ -510,20 +513,13 @@ ephy_shell_get_autocompletion (EphyShell *gs)
EphyHistory *gh = ephy_embed_shell_get_global_history (EPHY_EMBED_SHELL (gs));
EphyBookmarks *bmk = ephy_shell_get_bookmarks (gs);
- EphyFilesystemAutocompletion *fa = ephy_filesystem_autocompletion_new ();
p->autocompletion = ephy_autocompletion_new ();
ephy_autocompletion_set_prefixes (p->autocompletion, prefixes);
ephy_autocompletion_add_source (p->autocompletion,
EPHY_AUTOCOMPLETION_SOURCE (gh));
ephy_autocompletion_add_source (p->autocompletion,
- EPHY_AUTOCOMPLETION_SOURCE (fa));
- ephy_autocompletion_add_source (p->autocompletion,
EPHY_AUTOCOMPLETION_SOURCE (bmk));
-
- g_object_unref (gh);
- g_object_unref (fa);
- g_object_unref (gs->priv->bookmarks);
}
return p->autocompletion;
}
diff --git a/src/ephy-spinner-action.c b/src/ephy-spinner-action.c
index 3e990f49b..84d0e3cee 100644
--- a/src/ephy-spinner-action.c
+++ b/src/ephy-spinner-action.c
@@ -95,7 +95,7 @@ create_tool_item (EggAction *action)
gtk_widget_show (button);
gtk_container_add (GTK_CONTAINER (item), button);
spinner = ephy_spinner_new ();
- ephy_spinner_set_small_mode (EPHY_SPINNER (spinner), TRUE);
+ ephy_spinner_set_small_mode (spinner, TRUE);
gtk_container_add (GTK_CONTAINER (button), spinner);
egg_tool_item_set_pack_end (EGG_TOOL_ITEM (item), TRUE);
egg_tool_item_set_homogeneous (EGG_TOOL_ITEM (item), FALSE);