Kaydet (Commit) 6673aa3f authored tarafından Tor Lillqvist's avatar Tor Lillqvist

The WindowName param to WordBasic.AppMaximize() is optional and must be an Any

Change-Id: I52d75427fe30945293f347e3f49d21bc2016edae
üst 49181f4b
......@@ -39,7 +39,7 @@ interface XWordBasic
[in] any OpenExclusive,
[in] any SubType );
long AppMaximize( [in] string WindowName, [in] any State );
long AppMaximize( [in] any WindowName, [in] any State );
long DocMaximize( [in] any State );
void AppShow( [in] any WindowName );
long AppCount();
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment