diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-01-26 06:48:28 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-01-26 06:48:28 +0800 |
commit | d68b6453137d04f930e398c3b068b23e76feb300 (patch) | |
tree | 8f62272e7c7756cc82c9b92b8d5e8f08765533f5 /embed | |
parent | 7ebc08b9e2458d83194a9f264baefda114146981 (diff) | |
download | gsoc2013-epiphany-d68b6453137d04f930e398c3b068b23e76feb300.tar.gz gsoc2013-epiphany-d68b6453137d04f930e398c3b068b23e76feb300.tar.zst gsoc2013-epiphany-d68b6453137d04f930e398c3b068b23e76feb300.zip |
Correct a translator name.
2004-01-25 Marco Pesenti Gritti <marco@gnome.org>
* NEWS:
Correct a translator name.
* embed/mozilla/ContentHandler.cpp:
Really cancel the download when the user told so.
* lib/ephy-dialog.c: (setup_default_size), (ephy_dialog_run),
(ephy_dialog_init), (ephy_dialog_set_property),
(ephy_dialog_get_property), (ephy_dialog_class_init):
Add default width/height properties.
Diffstat (limited to 'embed')
-rw-r--r-- | embed/mozilla/ContentHandler.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/embed/mozilla/ContentHandler.cpp b/embed/mozilla/ContentHandler.cpp index 0d315d8e5..81e980657 100644 --- a/embed/mozilla/ContentHandler.cpp +++ b/embed/mozilla/ContentHandler.cpp @@ -377,7 +377,11 @@ NS_METHOD GContentHandler::MIMEDoAction (void) { LaunchHelperApp (); } - else if (mAction != CONTENT_ACTION_NONE) + else if (mAction == CONTENT_ACTION_NONE) + { + mLauncher->Cancel (); + } + else { mLauncher->SaveToDisk (nsnull,PR_FALSE); } |