diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-05-29 22:13:19 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-05-29 22:13:19 +0800 |
commit | 7c160e12677002e1208e229a1822f0ea957d6910 (patch) | |
tree | d211b45aa8dd4b1be8760204812332528e270552 | |
parent | c630e8b595539f53cb272cf24a638421ce230a60 (diff) | |
download | gsoc2013-epiphany-7c160e12677002e1208e229a1822f0ea957d6910.tar gsoc2013-epiphany-7c160e12677002e1208e229a1822f0ea957d6910.tar.gz gsoc2013-epiphany-7c160e12677002e1208e229a1822f0ea957d6910.tar.bz2 gsoc2013-epiphany-7c160e12677002e1208e229a1822f0ea957d6910.tar.lz gsoc2013-epiphany-7c160e12677002e1208e229a1822f0ea957d6910.tar.xz gsoc2013-epiphany-7c160e12677002e1208e229a1822f0ea957d6910.tar.zst gsoc2013-epiphany-7c160e12677002e1208e229a1822f0ea957d6910.zip |
Don't return a value in void function, part of bug #141319.
2004-05-29 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed.c: (ephy_embed_print_preview_navigate):
Don't return a value in void function, part of bug #141319.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/ephy-embed.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2004-05-29 Christian Persch <chpe@cvs.gnome.org> + * embed/ephy-embed.c: (ephy_embed_print_preview_navigate): + + Don't return a value in void function, part of bug #141319. + +2004-05-29 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/GtkNSSKeyPairDialogs.cpp: Fix for mozilla API change, backported from HEAD (ported from galeon). diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index c78ca6b1f..ce7c74013 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -406,7 +406,7 @@ ephy_embed_print_preview_navigate (EphyEmbed *embed, int page) { EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed); - return iface->print_preview_navigate (embed, type, page); + iface->print_preview_navigate (embed, type, page); } gboolean |