diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-12-20 02:13:53 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-12-20 02:13:53 +0800 |
commit | 4f96cabd5769fb8e49579ef4976a74fcc61ef999 (patch) | |
tree | 56f7f287cffdf64fae3ce216ae55ab4f59b212a4 | |
parent | ca1c6796980e5787767a30bb9933fb4232931b3d (diff) | |
download | gsoc2013-epiphany-4f96cabd5769fb8e49579ef4976a74fcc61ef999.tar.gz gsoc2013-epiphany-4f96cabd5769fb8e49579ef4976a74fcc61ef999.tar.zst gsoc2013-epiphany-4f96cabd5769fb8e49579ef4976a74fcc61ef999.zip |
EphyFileChooser now destroys with parent, don't set the flag again here.
2003-12-19 Christian Persch <chpe@cvs.gnome.org>
* embed/print-dialog.c: (ephy_print_dialog_browse_button_cb):
EphyFileChooser now destroys with parent, don't set the flag again here.
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | embed/print-dialog.c | 2 |
2 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,11 @@ 2003-12-19 Christian Persch <chpe@cvs.gnome.org> + * embed/print-dialog.c: (ephy_print_dialog_browse_button_cb): + + EphyFileChooser now destroys with parent, don't set the flag again here. + +2003-12-19 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-file-chooser.c: (ephy_file_chooser_new): Destroy file chooser with its parent window; fixes crashes. diff --git a/embed/print-dialog.c b/embed/print-dialog.c index 0f90947c1..bc27defcd 100755 --- a/embed/print-dialog.c +++ b/embed/print-dialog.c @@ -278,8 +278,6 @@ ephy_print_dialog_browse_button_cb (GtkWidget *widget, GTK_FILE_CHOOSER_ACTION_SAVE, CONF_PRINT_DIR); - gtk_window_set_destroy_with_parent (GTK_WINDOW (fc), TRUE); - g_signal_connect (GTK_DIALOG (fc), "response", G_CALLBACK (print_filechooser_response_cb), dialog); |