diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-05-29 22:17:08 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-05-29 22:17:08 +0800 |
commit | 585f6c0d42e2deb0e2c3449c8286b01022b89f64 (patch) | |
tree | 555bd14cf60509eacd3504ca50a0bd78804d8c5f | |
parent | 7c160e12677002e1208e229a1822f0ea957d6910 (diff) | |
download | gsoc2013-epiphany-585f6c0d42e2deb0e2c3449c8286b01022b89f64.tar gsoc2013-epiphany-585f6c0d42e2deb0e2c3449c8286b01022b89f64.tar.gz gsoc2013-epiphany-585f6c0d42e2deb0e2c3449c8286b01022b89f64.tar.bz2 gsoc2013-epiphany-585f6c0d42e2deb0e2c3449c8286b01022b89f64.tar.lz gsoc2013-epiphany-585f6c0d42e2deb0e2c3449c8286b01022b89f64.tar.xz gsoc2013-epiphany-585f6c0d42e2deb0e2c3449c8286b01022b89f64.tar.zst gsoc2013-epiphany-585f6c0d42e2deb0e2c3449c8286b01022b89f64.zip |
Don't return a value in void function, part of bug #141319.
2004-05-29 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-dialog.c: (ephy_dialog_construct):
Don't return a value in void function, part of bug #141319.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/ephy-dialog.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2004-05-29 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-dialog.c: (ephy_dialog_construct): + + 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. diff --git a/lib/ephy-dialog.c b/lib/ephy-dialog.c index 05e6c94c1..b9f529d06 100644 --- a/lib/ephy-dialog.c +++ b/lib/ephy-dialog.c @@ -1183,7 +1183,7 @@ ephy_dialog_construct (EphyDialog *dialog, const char *domain) { EphyDialogClass *klass = EPHY_DIALOG_GET_CLASS (dialog); - return klass->construct (dialog, properties, file, name, domain); + klass->construct (dialog, properties, file, name, domain); } void |