diff options
author | Tor Lillqvist <tml@collabora.com> | 2019-09-18 16:43:40 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2019-10-07 22:59:00 +0200 |
commit | e4979457bf11a4ee4594eb2ba3f9bf9ca07fab79 (patch) | |
tree | 00b1c669717dd77b7fedadabc84564a47f61ffaf /sw | |
parent | 5ff93b6b35841248d899c77a395354a42b0b9e2b (diff) |
Add a SAL_INFO for SwVbaDocument::SaveAs2000()
Change-Id: Ic91b9c3a832d68ca3ccc61ccb19b0e29b488abc0
(cherry picked from commit 6412701313a875aff199dbf862e250faf6861cd0)
Reviewed-on: https://gerrit.libreoffice.org/79256
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Tested-by: Tor Lillqvist <tml@collabora.com>
(cherry picked from commit 30f25672a86494625d525086d0a81513db119917)
Reviewed-on: https://gerrit.libreoffice.org/80377
Tested-by: Jenkins
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/vba/vbadocument.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/source/ui/vba/vbadocument.cxx b/sw/source/ui/vba/vbadocument.cxx index c8179770f0fc..894bac0aa996 100644 --- a/sw/source/ui/vba/vbadocument.cxx +++ b/sw/source/ui/vba/vbadocument.cxx @@ -460,6 +460,8 @@ SwVbaDocument::Frames( const uno::Any& index ) void SAL_CALL SwVbaDocument::SaveAs2000( const uno::Any& FileName, const uno::Any& FileFormat, const uno::Any& /*LockComments*/, const uno::Any& /*Password*/, const uno::Any& /*AddToRecentFiles*/, const uno::Any& /*WritePassword*/, const uno::Any& /*ReadOnlyRecommended*/, const uno::Any& /*EmbedTrueTypeFonts*/, const uno::Any& /*SaveNativePictureFormat*/, const uno::Any& /*SaveFormsData*/, const uno::Any& /*SaveAsAOCELetter*/ ) { + SAL_INFO("sw.vba", "Document.SaveAs2000(FileName:=" << FileName << ",FileFormat:=" << FileFormat << ")"); + // Based on ScVbaWorkbook::SaveAs. OUString sFileName; FileName >>= sFileName; |