summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2019-09-18 15:43:51 +0300
committerTor Lillqvist <tml@collabora.com>2019-09-18 15:43:51 +0300
commit0993ccb56eba6e52d5b3b00f60ea069571f2554a (patch)
treec1d614484153b61c516f5e76e3a66c34edcc9c78 /sw/source
parent9f2ded72a11190384c4a2d17b79e8db754110924 (diff)
Add a SAL_INFO for SwVbaDocuments::Open()
Change-Id: I0c62864f3efa53dde0dc78482d8e9c7ffc35b6ee
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/ui/vba/vbadocuments.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/source/ui/vba/vbadocuments.cxx b/sw/source/ui/vba/vbadocuments.cxx
index b32b80beeac5..083ffcadf6fb 100644
--- a/sw/source/ui/vba/vbadocuments.cxx
+++ b/sw/source/ui/vba/vbadocuments.cxx
@@ -120,6 +120,8 @@ SwVbaDocuments::Close( const uno::Any& /*SaveChanges*/, const uno::Any& /*Origin
uno::Any SAL_CALL
SwVbaDocuments::Open( const OUString& Filename, const uno::Any& /*ConfirmConversions*/, const uno::Any& ReadOnly, const uno::Any& /*AddToRecentFiles*/, const uno::Any& /*PasswordDocument*/, const uno::Any& /*PasswordTemplate*/, const uno::Any& /*Revert*/, const uno::Any& /*WritePasswordDocument*/, const uno::Any& /*WritePasswordTemplate*/, const uno::Any& /*Format*/, const uno::Any& /*Encoding*/, const uno::Any& /*Visible*/, const uno::Any& /*OpenAndRepair*/, const uno::Any& /*DocumentDirection*/, const uno::Any& /*NoEncodingDialog*/, const uno::Any& /*XMLTransform*/ )
{
+ SAL_INFO("sw.vba", "Documents.Open(Filename:=" << Filename << ",ReadOnly:=" << ReadOnly << ")");
+
// we need to detect if this is a URL, if not then assume it's a file path
OUString aURL;
INetURLObject aObj;