diff options
-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 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 |