From 161c9b511dce174be1654400ac2f116d64a32747 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sat, 8 Feb 2003 12:53:15 +0000 Subject: Fix some i18n problems 2003-02-08 Marco Pesenti Gritti * data/starthere/index.xml.in: Fix some i18n problems * src/ephy-spinner-action.c: (item_parent_set_cb), (connect_proxy): Use connect object to avoid signals on dead widgets. --- ChangeLog | 10 ++++++++++ data/starthere/index.xml.in | 17 +++++++++++------ src/ephy-spinner-action.c | 12 ++++++------ 3 files changed, 27 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index e35390d99..5689a24fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2003-02-08 Marco Pesenti Gritti + + * data/starthere/index.xml.in: + + Fix some i18n problems + + * src/ephy-spinner-action.c: (item_parent_set_cb), (connect_proxy): + + Use connect object to avoid signals on dead widgets. + 2003-02-08 Marco Pesenti Gritti * data/ui/epiphany-toolbar.xml.in: diff --git a/data/starthere/index.xml.in b/data/starthere/index.xml.in index f919d977c..e0b5f3a32 100644 --- a/data/starthere/index.xml.in +++ b/data/starthere/index.xml.in @@ -13,13 +13,18 @@ the Enter key. You can remember important visited pages using bookmarks or brows them with the history dialog. <_title>Getting started - -<_translate>To import bookmarks from another browser installed on your system just -click on one of the links below: +<_paragraph> +To import bookmarks from another browser installed on your system just +click on one of the links below: + +<_paragraph> - + +<_paragraph> +If your internet connection requires it, make sure to setup your proxy in the +desktop wide configuration dialog. + -<_translate>If your internet connection requires it, make sure to setup your proxy in the -desktop wide <_translate>configuration dialog. +<_translate>Proxy configuration diff --git a/src/ephy-spinner-action.c b/src/ephy-spinner-action.c index 1ad90ec64..5b0ef5ed8 100644 --- a/src/ephy-spinner-action.c +++ b/src/ephy-spinner-action.c @@ -124,9 +124,9 @@ item_parent_set_cb (GtkWidget *item, GtkWidget *previous_parent) toolbar = EGG_TOOLBAR (item->parent); - g_signal_connect (toolbar, "style_changed", - G_CALLBACK (toolbar_style_sync), - item); + g_signal_connect_object (toolbar, "style_changed", + G_CALLBACK (toolbar_style_sync), + item, 0); style = egg_toolbar_get_style (toolbar); toolbar_style_sync (toolbar, style, item); @@ -138,9 +138,9 @@ connect_proxy (EggAction *action, GtkWidget *proxy) g_signal_connect_object (action, "notify::throbbing", G_CALLBACK (ephy_spinner_action_sync_throbbing), proxy, 0); - g_signal_connect (proxy, "parent_set", - G_CALLBACK (item_parent_set_cb), - NULL); + g_signal_connect_object (proxy, "parent_set", + G_CALLBACK (item_parent_set_cb), + proxy, 0); (* EGG_ACTION_CLASS (parent_class)->connect_proxy) (action, proxy); } -- cgit v1.2.3