diff options
author | Tor Lillqvist <tml@collabora.com> | 2019-01-18 16:59:51 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2019-01-21 11:28:46 +0200 |
commit | 712acb2a1d49e4ed3dccd34f5e6bc35ac735ce31 (patch) | |
tree | c0ab1d37c89a7884c87eb432788cd82d9eaf9f43 /sw | |
parent | 87b6dac1581cf224f67e86a048deef5fed2e72f9 (diff) |
Add a dummy WordBasic.ToolsOptionsView
Does nothing. Needed for customer application to proceed. Once we are
further along in getting it to work, we can investigate what the
parameters passed to this ToolsOptionsView method actually are. (This
WordBasic thing is something that has been deprecated since last
century, I suspect, so no wonder it is hard to find authoritative
documentation on it.)
Change-Id: I62a6d6d9abb9364afca110570fa341a2375a77a6
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/vba/vbaapplication.cxx | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/sw/source/ui/vba/vbaapplication.cxx b/sw/source/ui/vba/vbaapplication.cxx index 9c7937c4ee62..aa86e7a7fbc6 100644 --- a/sw/source/ui/vba/vbaapplication.cxx +++ b/sw/source/ui/vba/vbaapplication.cxx @@ -76,6 +76,26 @@ public: virtual void SAL_CALL setMailMergeMainDocumentType( sal_Int32 _mailmergemaindocumenttype ) override; virtual void SAL_CALL FileOpen( const OUString& Name, const uno::Any& ConfirmConversions, const uno::Any& ReadOnly, const uno::Any& AddToMru, const uno::Any& PasswordDoc, const uno::Any& PasswordDot, const uno::Any& Revert, const uno::Any& WritePasswordDoc, const uno::Any& WritePasswordDot ) override; + virtual void SAL_CALL ToolsOptionsView( const css::uno::Any& Whatever1, + const css::uno::Any& Whatever2, + const css::uno::Any& Whatever3, + const css::uno::Any& Whatever4, + const css::uno::Any& Whatever5, + const css::uno::Any& Whatever6, + const css::uno::Any& Whatever7, + const css::uno::Any& Whatever8, + const css::uno::Any& Whatever9, + const css::uno::Any& Whatever10, + const css::uno::Any& Whatever11, + const css::uno::Any& Whatever12, + const css::uno::Any& Whatever13, + const css::uno::Any& Whatever14, + const css::uno::Any& Whatever15, + const css::uno::Any& Whatever16, + const css::uno::Any& Whatever17, + const css::uno::Any& Whatever18, + const css::uno::Any& Whatever19, + const css::uno::Any& Whatever20 ) override; virtual OUString SAL_CALL WindowName() override; virtual sal_Bool SAL_CALL ExistingBookmark( const OUString& Name ) override; virtual void SAL_CALL MailMergeOpenDataSource(const OUString& Name, const css::uno::Any& Format, @@ -510,6 +530,31 @@ SwWordBasic::FileOpen( const OUString& Name, const uno::Any& ConfirmConversions, rDocuments->Open( Name, ConfirmConversions, ReadOnly, AddToMru, PasswordDoc, PasswordDot, Revert, WritePasswordDoc, WritePasswordDot, uno::Any(), uno::Any(), uno::Any(), uno::Any(), uno::Any(), uno::Any(), uno::Any() ); } +void SAL_CALL +SwWordBasic::ToolsOptionsView( const css::uno::Any& /*Whatever1*/, + const css::uno::Any& /*Whatever2*/, + const css::uno::Any& /*Whatever3*/, + const css::uno::Any& /*Whatever4*/, + const css::uno::Any& /*Whatever5*/, + const css::uno::Any& /*Whatever6*/, + const css::uno::Any& /*Whatever7*/, + const css::uno::Any& /*Whatever8*/, + const css::uno::Any& /*Whatever9*/, + const css::uno::Any& /*Whatever10*/, + const css::uno::Any& /*Whatever11*/, + const css::uno::Any& /*Whatever12*/, + const css::uno::Any& /*Whatever13*/, + const css::uno::Any& /*Whatever14*/, + const css::uno::Any& /*Whatever15*/, + const css::uno::Any& /*Whatever16*/, + const css::uno::Any& /*Whatever17*/, + const css::uno::Any& /*Whatever18*/, + const css::uno::Any& /*Whatever19*/, + const css::uno::Any& /*Whatever20*/) +{ + // ??? +} + OUString SAL_CALL SwWordBasic::WindowName() { |