Kaydet (Commit) 57acb3d0 authored tarafından Michael Stahl's avatar Michael Stahl

winaccessibility: out-line those COM methods

Change-Id: I7e9a94898c6bc8142b46a05ffba56fc41eb125c2
üst 975e1d29
......@@ -21,7 +21,20 @@
#include "UAccCOM.h"
#include "UNOXWrapper.h"
using namespace ::com::sun::star;
/////////////////////////////////////////////////////////////////////////////
// CUNOXWrapper
STDMETHODIMP CUNOXWrapper::put_XInterface(hyper nXInterface)
{
pUNOInterface = reinterpret_cast<accessibility::XAccessible*>(nXInterface);
return S_OK;
}
STDMETHODIMP CUNOXWrapper::put_XSubInterface(hyper)
{
return S_OK;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -37,17 +37,8 @@ public:
public:
// IUNOXWrapper
STDMETHOD(put_XInterface)(hyper pXInterface)
{
pUNOInterface = (com::sun::star::accessibility::XAccessible*)pXInterface;
return S_OK;
}
STDMETHOD(put_XSubInterface)(hyper)
{
return S_OK;
}
STDMETHOD(put_XInterface)(hyper pXInterface);
STDMETHOD(put_XSubInterface)(hyper);
protected:
......
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