aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-05-29 22:17:08 +0800
committerChristian Persch <chpe@src.gnome.org>2004-05-29 22:17:08 +0800
commit585f6c0d42e2deb0e2c3449c8286b01022b89f64 (patch)
tree555bd14cf60509eacd3504ca50a0bd78804d8c5f
parent7c160e12677002e1208e229a1822f0ea957d6910 (diff)
downloadgsoc2013-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--ChangeLog6
-rw-r--r--lib/ephy-dialog.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 93c0f57b6..9fbd76065 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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