diff options
author | Lee Willis <lwillis@plus.net> | 2003-01-10 03:50:09 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-10 03:50:09 +0800 |
commit | b89760dbb2551973cdf6cc8647bf518b0f7eb564 (patch) | |
tree | 6ea4f6684f56b98f5d35fac9cfbc94b11122dacd /embed/mozilla | |
parent | 237622044c96f0cfcba6d7fe21b908beb085b2e4 (diff) | |
download | gsoc2013-epiphany-b89760dbb2551973cdf6cc8647bf518b0f7eb564.tar gsoc2013-epiphany-b89760dbb2551973cdf6cc8647bf518b0f7eb564.tar.gz gsoc2013-epiphany-b89760dbb2551973cdf6cc8647bf518b0f7eb564.tar.bz2 gsoc2013-epiphany-b89760dbb2551973cdf6cc8647bf518b0f7eb564.tar.lz gsoc2013-epiphany-b89760dbb2551973cdf6cc8647bf518b0f7eb564.tar.xz gsoc2013-epiphany-b89760dbb2551973cdf6cc8647bf518b0f7eb564.tar.zst gsoc2013-epiphany-b89760dbb2551973cdf6cc8647bf518b0f7eb564.zip |
Destroy "Invalid path dialog" correctly
2003-01-09 Lee Willis <lwillis@plus.net>
* embed/mozilla/FilePicker.cpp:
Destroy "Invalid path dialog" correctly
Diffstat (limited to 'embed/mozilla')
-rw-r--r-- | embed/mozilla/FilePicker.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/embed/mozilla/FilePicker.cpp b/embed/mozilla/FilePicker.cpp index 144f2e1f2..3a51fc12b 100644 --- a/embed/mozilla/FilePicker.cpp +++ b/embed/mozilla/FilePicker.cpp @@ -371,6 +371,7 @@ NS_METHOD GFilePicker::SanityCheck (PRBool *retIsSane) gtk_window_set_modal (GTK_WINDOW(errorDialog), TRUE); gtk_dialog_run (GTK_DIALOG(errorDialog)); + gtk_widget_destroy (errorDialog); *retIsSane = PR_FALSE; return NS_OK; } |