From de0105a3093beca09830188623c9c54c8095b2c6 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 18 Jan 2019 14:14:37 +0200 Subject: 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 --- sw/source/ui/vba/vbaapplication.cxx | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'sw/source/ui/vba/vbaapplication.cxx') 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? -- cgit v1.2.3