diff options
Diffstat (limited to 'include/cppu/Enterable.hxx')
-rw-r--r-- | include/cppu/Enterable.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/cppu/Enterable.hxx b/include/cppu/Enterable.hxx index 4670ab52d49e..9e6970d8e4e0 100644 --- a/include/cppu/Enterable.hxx +++ b/include/cppu/Enterable.hxx @@ -47,16 +47,16 @@ public: public: inline explicit Enterable(); - inline void enter() {m_enter(this);} - inline void leave() {m_leave(this);} + void enter() {m_enter(this);} + void leave() {m_leave(this);} - inline void callInto_v(uno_EnvCallee * pCallee, va_list * pParam) {m_callInto_v(this, pCallee, pParam);} - inline void callOut_v (uno_EnvCallee * pCallee, va_list * pParam) {m_callOut_v (this, pCallee, pParam);} + void callInto_v(uno_EnvCallee * pCallee, va_list * pParam) {m_callInto_v(this, pCallee, pParam);} + void callOut_v (uno_EnvCallee * pCallee, va_list * pParam) {m_callOut_v (this, pCallee, pParam);} inline void callInto(uno_EnvCallee * pCallee, ...); inline void callOut (uno_EnvCallee * pCallee, ...); - inline int isValid (rtl::OUString * pReason) {return m_isValid(this, &pReason->pData);} + int isValid (rtl::OUString * pReason) {return m_isValid(this, &pReason->pData);} private: Enterable(Enterable const &) SAL_DELETED_FUNCTION; |