aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 7072dd6c6..899e359d8 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 9d0ee28af..c402ca54b 100644
--- a/lib/ephy-dialog.c
+++ b/lib/ephy-dialog.c
@@ -1187,7 +1187,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