summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbaapplication.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2019-01-18 14:14:37 +0200
committerTor Lillqvist <tml@collabora.com>2019-01-21 11:27:29 +0200
commitde0105a3093beca09830188623c9c54c8095b2c6 (patch)
treee8cf8272727e4c0b84860b8b79361832b12641a4 /sw/source/ui/vba/vbaapplication.cxx
parentc4ac33d5cee521fa24a9d46f53d1c6e9c9650086 (diff)
Add Documents.OpenOld() method and Application.CustomizationContext property
OpenOld() just forwards to the regular Open(), passing empty extra parameters. CustomizationContext is fully dummy for now. Change-Id: I167494700853768d971fe16afea35e90a647a00e
Diffstat (limited to 'sw/source/ui/vba/vbaapplication.cxx')
-rw-r--r--sw/source/ui/vba/vbaapplication.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/sw/source/ui/vba/vbaapplication.cxx b/sw/source/ui/vba/vbaapplication.cxx
index 578a2b3d6c35..b9c8bd5f4055 100644
--- a/sw/source/ui/vba/vbaapplication.cxx
+++ b/sw/source/ui/vba/vbaapplication.cxx
@@ -319,6 +319,17 @@ OUString SAL_CALL SwVbaApplication::getStatusBar()
return OUString("");
}
+uno::Any SAL_CALL SwVbaApplication::getCustomizationContext()
+{
+ return uno::Any(); // ???
+}
+
+void SAL_CALL SwVbaApplication::setCustomizationContext( const uno::Any& _customizationcontext )
+{
+ (void) _customizationcontext;
+ // ???
+}
+
void SAL_CALL SwVbaApplication::setStatusBar( const OUString& _statusbar )
{
// ScVbaAppSettings::setStatusBar() also uses the XStatusIndicator to show this, so maybe that is OK?