summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2019-09-18 16:43:40 +0300
committerTor Lillqvist <tml@collabora.com>2019-09-18 16:43:40 +0300
commit6412701313a875aff199dbf862e250faf6861cd0 (patch)
treebfdc5f12e4841aaa40e695448f0c7915acbecbdf
parent0993ccb56eba6e52d5b3b00f60ea069571f2554a (diff)
Add a SAL_INFO for SwVbaDocument::SaveAs2000()
Change-Id: Ic91b9c3a832d68ca3ccc61ccb19b0e29b488abc0
-rw-r--r--sw/source/ui/vba/vbadocument.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/source/ui/vba/vbadocument.cxx b/sw/source/ui/vba/vbadocument.cxx
index d9aec575b6c4..a0c7401b4b00 100644
--- a/sw/source/ui/vba/vbadocument.cxx
+++ b/sw/source/ui/vba/vbadocument.cxx
@@ -459,6 +459,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;