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

Add a dummy implementation of WordBasic.DocMaximize()

Change-Id: I972f9446560cc8ac51031dbc36fc05d438d150e7
üst 02035ea7
......@@ -40,6 +40,7 @@ interface XWordBasic
[in] any SubType );
long AppMaximize( [in] string WindowName, [in] any State );
long DocMaximize( [in] any State );
};
}; }; };
......
......@@ -110,6 +110,7 @@ public:
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 DocMaximize( const css::uno::Any& State ) override;
};
SwVbaApplication::SwVbaApplication( uno::Reference<uno::XComponentContext >& xContext ):
......@@ -648,4 +649,13 @@ SwWordBasic::AppMaximize( const OUString& WindowName, const css::uno::Any& State
return 0;
}
sal_Int32 SAL_CALL
SwWordBasic::DocMaximize( const css::uno::Any& State )
{
SAL_INFO("sw.vba", "WordBasic.DocMaximize(State:=" << State << ")");
// FIXME: Implement if necessary
return 0;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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