diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-12-21 06:41:26 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-12-21 06:41:26 +0800 |
commit | dad20f67f803c3832a528cb669a93c921758bb55 (patch) | |
tree | 4d3788e3829f08d38ac203811c67cbb47daa4672 /src | |
parent | f5e08b60b8caa225df8253f4e1249c4120d81717 (diff) | |
download | gsoc2013-epiphany-dad20f67f803c3832a528cb669a93c921758bb55.tar gsoc2013-epiphany-dad20f67f803c3832a528cb669a93c921758bb55.tar.gz gsoc2013-epiphany-dad20f67f803c3832a528cb669a93c921758bb55.tar.bz2 gsoc2013-epiphany-dad20f67f803c3832a528cb669a93c921758bb55.tar.lz gsoc2013-epiphany-dad20f67f803c3832a528cb669a93c921758bb55.tar.xz gsoc2013-epiphany-dad20f67f803c3832a528cb669a93c921758bb55.tar.zst gsoc2013-epiphany-dad20f67f803c3832a528cb669a93c921758bb55.zip |
Show warning on mixed content in the tooltip. Bug #321508.
2005-12-20 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-window.c:
Show warning on mixed content in the tooltip. Bug #321508.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-window.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 0a6b64e1b..eb2c4c9cc 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -1459,8 +1459,13 @@ sync_tab_security (EphyTab *tab, GParamSpec *pspec, EphyWindow *window) state = _("Broken"); stock_id = STOCK_LOCK_BROKEN; show_lock = TRUE; + + /* Change to HAVE_GECKO_1_8_1 once https://bugzilla.mozilla.org/show_bug.cgi?id=251123 is checked in there */ +#ifndef HAVE_GECKO_1_9 + /* In Gecko 1.9, we get a useful tooltip here */ g_free (description); description = NULL; +#endif break; case EPHY_EMBED_STATE_IS_SECURE_LOW: case EPHY_EMBED_STATE_IS_SECURE_MED: |