Kaydet (Commit) 43beae7f authored tarafından Herbert Dürr's avatar Herbert Dürr

standalone semicolon is deprecated as toplevel declaration

üst de9ea83d
...@@ -46,16 +46,16 @@ public: ...@@ -46,16 +46,16 @@ public:
virtual void v_callOut_v (uno_EnvCallee * pCallee, va_list * pParam) = 0; virtual void v_callOut_v (uno_EnvCallee * pCallee, va_list * pParam) = 0;
virtual int v_isValid (rtl::OUString * pReason) = 0; virtual int v_isValid (rtl::OUString * pReason) = 0;
virtual ~Enterable() {}; virtual ~Enterable() {}
public: public:
inline explicit Enterable(void); inline explicit Enterable(void);
inline void enter(void) {m_enter(this);}; inline void enter(void) {m_enter(this);}
inline void leave(void) {m_leave(this);}; inline void leave(void) {m_leave(this);}
inline void callInto_v(uno_EnvCallee * pCallee, va_list * pParam) {m_callInto_v(this, pCallee, pParam);}; 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);}; inline void callOut_v (uno_EnvCallee * pCallee, va_list * pParam) {m_callOut_v (this, pCallee, pParam);}
inline void callInto(uno_EnvCallee * pCallee, ...); inline void callInto(uno_EnvCallee * pCallee, ...);
inline void callOut (uno_EnvCallee * pCallee, ...); inline void callOut (uno_EnvCallee * pCallee, ...);
...@@ -67,12 +67,12 @@ private: ...@@ -67,12 +67,12 @@ private:
Enterable & operator = (Enterable const &); Enterable & operator = (Enterable const &);
}; };
extern "C" inline void Enterable_call_enter (void * context) { ((Enterable *)context)->v_enter(); }; extern "C" inline void Enterable_call_enter (void * context) { ((Enterable *)context)->v_enter(); }
extern "C" inline void Enterable_call_leave (void * context) { ((Enterable *)context)->v_leave(); }; extern "C" inline void Enterable_call_leave (void * context) { ((Enterable *)context)->v_leave(); }
extern "C" inline void Enterable_call_callInto_v(void * context, uno_EnvCallee * pCallee, va_list * pParam) extern "C" inline void Enterable_call_callInto_v(void * context, uno_EnvCallee * pCallee, va_list * pParam)
{ ((Enterable *)context)->v_callInto_v(pCallee, pParam); }; { ((Enterable *)context)->v_callInto_v(pCallee, pParam); }
extern "C" inline void Enterable_call_callOut_v (void * context, uno_EnvCallee * pCallee, va_list * pParam) extern "C" inline void Enterable_call_callOut_v (void * context, uno_EnvCallee * pCallee, va_list * pParam)
{ ((Enterable *)context)->v_callOut_v(pCallee, pParam); }; { ((Enterable *)context)->v_callOut_v(pCallee, pParam); }
extern "C" inline int Enterable_call_isValid (void * context, rtl_uString ** pReason) extern "C" inline int Enterable_call_isValid (void * context, rtl_uString ** pReason)
{return ((Enterable *)context)->v_isValid((rtl::OUString *)pReason);} {return ((Enterable *)context)->v_isValid((rtl::OUString *)pReason);}
......
...@@ -1595,7 +1595,7 @@ public: ...@@ -1595,7 +1595,7 @@ public:
class DirectoryCreationObserver class DirectoryCreationObserver
{ {
public: public:
virtual ~DirectoryCreationObserver() {}; virtual ~DirectoryCreationObserver() {}
/** This method will be called when a new directory has been /** This method will be called when a new directory has been
created and needs to be overwritten by derived classes. created and needs to be overwritten by derived classes.
...@@ -1693,7 +1693,7 @@ public: ...@@ -1693,7 +1693,7 @@ public:
@see close() @see close()
*/ */
inline sal_Bool isOpen() { return _pData != NULL; }; inline sal_Bool isOpen() { return _pData != NULL; }
/** Close a directory. /** Close a directory.
......
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