diff options
author | Tor Lillqvist <tml@collabora.com> | 2019-02-07 12:04:49 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2019-02-07 12:40:10 +0200 |
commit | 6673aa3fefad3b64469e3c6457161e09f6c27f5f (patch) | |
tree | 30b3bfbd42b6cb535b036cfb132b83d21250a49c /sw | |
parent | 49181f4b2f3cc1eeb6d0ed0ad317c6f314bb5eba (diff) |
The WindowName param to WordBasic.AppMaximize() is optional and must be an Any
Change-Id: I52d75427fe30945293f347e3f49d21bc2016edae
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/vba/vbaapplication.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/vba/vbaapplication.cxx b/sw/source/ui/vba/vbaapplication.cxx index a1d902d61020..98236bacec81 100644 --- a/sw/source/ui/vba/vbaapplication.cxx +++ b/sw/source/ui/vba/vbaapplication.cxx @@ -109,7 +109,7 @@ public: const css::uno::Any& WritePasswordTemplate, const css::uno::Any& Connection, const css::uno::Any& SQLStatement, const css::uno::Any& SQLStatement1, const css::uno::Any& OpenExclusive, const css::uno::Any& SubType) override; - virtual sal_Int32 SAL_CALL AppMaximize( const OUString& WindowName, const css::uno::Any& State ) override; + virtual sal_Int32 SAL_CALL AppMaximize( const css::uno::Any& WindowName, const css::uno::Any& State ) override; virtual sal_Int32 SAL_CALL DocMaximize( const css::uno::Any& State ) override; virtual void SAL_CALL AppShow( const css::uno::Any& WindowName ) override; virtual sal_Int32 SAL_CALL AppCount() override; @@ -649,7 +649,7 @@ SwWordBasic::MailMergeOpenDataSource( const OUString& Name, const css::uno::Any& } sal_Int32 SAL_CALL -SwWordBasic::AppMaximize( const OUString& WindowName, const css::uno::Any& State ) +SwWordBasic::AppMaximize( const css::uno::Any& WindowName, const css::uno::Any& State ) { SAL_INFO("sw.vba", "WordBasic.AppMaximize( WindowName:=" << WindowName << ", State:=" << State); |