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