From df7296840d173dced1af25f32c0c2695c066fc58 Mon Sep 17 00:00:00 2001 From: John Foerch Date: Mon, 10 Dec 2012 19:01:44 -0500 Subject: [PATCH] save.js: pass extra arg to all calls to nsITransfer.init see commit 590d640b. that only did one call.. this does the rest. --- modules/save.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/save.js b/modules/save.js index b93cfae..ce9e869 100644 --- a/modules/save.js +++ b/modules/save.js @@ -150,7 +150,7 @@ function save_document_as_text (document, output_file) { mime_info_from_mime_type("text/plain"), null /* start time */, null /* temp file */, - persist); + persist, false); persist.progressListener = tr; persist.saveDocument(document, file_uri, null /* data path */, "text/plain", encoding_flags, @@ -204,7 +204,7 @@ function save_document_complete (document, output_file, output_dir) { mime_info_from_mime_type(mime_type), null /* start time */, null /* temp file */, - persist); + persist, false); persist.progressListener = tr; persist.saveDocument(document, file_uri, output_dir /* data path */, mime_type, encoding_flags, -- 2.11.4.GIT