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:08:33 +0200 |
commit | 699676cec58083afd7fa60b67e32cf7d6c9cf63f (patch) | |
tree | d7b3980436028edc8001875220b45f7bf4fefef3 /sw | |
parent | b1b54a5faf899488e5045c6b3e26241c9d7299de (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 97531796f92c..7341bd487fbd 100644 --- a/sw/source/ui/vba/vbaapplication.cxx +++ b/sw/source/ui/vba/vbaapplication.cxx @@ -108,7 +108,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; @@ -651,7 +651,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); |