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

Add a dummy implementation of WordBasic.AppShow()

Change-Id: I14379c5732c1921b8f52293045d01acf99e0b840
üst 3c42f006
......@@ -41,6 +41,7 @@ interface XWordBasic
long AppMaximize( [in] string WindowName, [in] any State );
long DocMaximize( [in] any State );
void AppShow( [in] string WindowName );
};
}; }; };
......
......@@ -110,6 +110,7 @@ public:
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;
virtual void SAL_CALL AppShow( const OUString& WindowName ) override;
};
SwVbaApplication::SwVbaApplication( uno::Reference<uno::XComponentContext >& xContext ):
......@@ -660,4 +661,12 @@ SwWordBasic::DocMaximize( const css::uno::Any& State )
return 0;
}
void SAL_CALL
SwWordBasic::AppShow( const OUString& WindowName )
{
SAL_INFO("sw.vba", "WordBasic.AppShow(WindowName:=" << WindowName << ")");
// FIXME: Implement if necessary
}
/* 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