diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-01-05 06:27:33 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-01-05 06:27:33 +0800 |
commit | 3fb4c8698f8917a93a74d21fd66a2862da573fd7 (patch) | |
tree | 924759e1d4004e1e4b6e2926220c96257cf12b42 | |
parent | 0537ba7e4849075b4d3f863f71be1b427e681425 (diff) | |
download | gsoc2013-epiphany-3fb4c8698f8917a93a74d21fd66a2862da573fd7.tar gsoc2013-epiphany-3fb4c8698f8917a93a74d21fd66a2862da573fd7.tar.gz gsoc2013-epiphany-3fb4c8698f8917a93a74d21fd66a2862da573fd7.tar.bz2 gsoc2013-epiphany-3fb4c8698f8917a93a74d21fd66a2862da573fd7.tar.lz gsoc2013-epiphany-3fb4c8698f8917a93a74d21fd66a2862da573fd7.tar.xz gsoc2013-epiphany-3fb4c8698f8917a93a74d21fd66a2862da573fd7.tar.zst gsoc2013-epiphany-3fb4c8698f8917a93a74d21fd66a2862da573fd7.zip |
Fix parent for help window.
2004-01-04 Christian Persch <chpe@cvs.gnome.org>
* embed/print-dialog.c: (ephy_print_dialog_response_cb):
Fix parent for help window.
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | embed/print-dialog.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2004-01-04 Christian Persch <chpe@cvs.gnome.org> + + * embed/print-dialog.c: (ephy_print_dialog_response_cb): + + Fix parent for help window. + 2004-01-04 Piers Cornwell <piers@myrealbox.com> * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_get_type), diff --git a/embed/print-dialog.c b/embed/print-dialog.c index 11c80ab1b..9c528b72d 100755 --- a/embed/print-dialog.c +++ b/embed/print-dialog.c @@ -239,7 +239,7 @@ ephy_print_dialog_response_cb (GtkWidget *widget, break; case GTK_RESPONSE_HELP: - ephy_gui_help (GTK_WINDOW (dialog), "epiphany", "to-print-page"); + ephy_gui_help (GTK_WINDOW (widget), "epiphany", "to-print-page"); return; default: break; |