diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-01-09 21:31:32 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-09 21:31:32 +0800 |
commit | 8103e076a47bcf1f9b9cab2d3c64f0e1f319cccc (patch) | |
tree | 3dd600f9a5272c23240d191be226c52bff973905 | |
parent | 7d278d4b5910d1adc5e075882aa559e8da407c4a (diff) | |
download | gsoc2013-epiphany-8103e076a47bcf1f9b9cab2d3c64f0e1f319cccc.tar gsoc2013-epiphany-8103e076a47bcf1f9b9cab2d3c64f0e1f319cccc.tar.gz gsoc2013-epiphany-8103e076a47bcf1f9b9cab2d3c64f0e1f319cccc.tar.bz2 gsoc2013-epiphany-8103e076a47bcf1f9b9cab2d3c64f0e1f319cccc.tar.lz gsoc2013-epiphany-8103e076a47bcf1f9b9cab2d3c64f0e1f319cccc.tar.xz gsoc2013-epiphany-8103e076a47bcf1f9b9cab2d3c64f0e1f319cccc.tar.zst gsoc2013-epiphany-8103e076a47bcf1f9b9cab2d3c64f0e1f319cccc.zip |
Reset link message when changing page.
2003-01-09 Marco Pesenti Gritti <marco@it.gnome.org>
* src/ephy-tab.c: (ephy_tab_location_cb):
Reset link message when changing page.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-tab.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2003-01-09 Marco Pesenti Gritti <marco@it.gnome.org> + * src/ephy-tab.c: (ephy_tab_location_cb): + + Reset link message when changing page. + +2003-01-09 Marco Pesenti Gritti <marco@it.gnome.org> + * TODO: * embed/ephy-history.c: (ephy_history_init): * embed/mozilla/FilePicker.cpp: diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 2c50af794..170ae3846 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -443,6 +443,7 @@ ephy_tab_location_cb (EphyEmbed *embed, EphyTab *tab) if (tab->priv->location) g_free (tab->priv->location); ephy_embed_get_location (embed, TRUE, &tab->priv->location); + tab->priv->link_message[0] = '\0'; if (tab->priv->is_active) { |