diff options
-rw-r--r-- | cppu/source/AffineBridge/AffineBridge.cxx | 6 | ||||
-rw-r--r-- | cppu/source/UnsafeBridge/UnsafeBridge.cxx | 2 | ||||
-rw-r--r-- | cppu/source/helper/purpenv/Proxy.hxx | 4 | ||||
-rw-r--r-- | cppu/source/uno/EnvStack.cxx | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/cppu/source/AffineBridge/AffineBridge.cxx b/cppu/source/AffineBridge/AffineBridge.cxx index 289fd9a837bd..973ef0c32c81 100644 --- a/cppu/source/AffineBridge/AffineBridge.cxx +++ b/cppu/source/AffineBridge/AffineBridge.cxx @@ -42,7 +42,7 @@ class InnerThread; class OuterThread; -class SAL_DLLPRIVATE AffineBridge : public cppu::Enterable +class AffineBridge : public cppu::Enterable { public: enum Msg @@ -81,7 +81,7 @@ public: void outerDispatch(int loop); }; -class SAL_DLLPRIVATE InnerThread : public osl::Thread +class InnerThread : public osl::Thread { virtual void SAL_CALL run(void); @@ -102,7 +102,7 @@ void InnerThread::run(void) m_pAffineBridge->leave(); } -class SAL_DLLPRIVATE OuterThread : public osl::Thread +class OuterThread : public osl::Thread { virtual void SAL_CALL run(void); diff --git a/cppu/source/UnsafeBridge/UnsafeBridge.cxx b/cppu/source/UnsafeBridge/UnsafeBridge.cxx index d653a1a2a9a8..7cd18fa8eacb 100644 --- a/cppu/source/UnsafeBridge/UnsafeBridge.cxx +++ b/cppu/source/UnsafeBridge/UnsafeBridge.cxx @@ -40,7 +40,7 @@ #endif -class SAL_DLLPRIVATE UnsafeBridge : public cppu::Enterable +class UnsafeBridge : public cppu::Enterable { osl::Mutex m_mutex; sal_Int32 m_count; diff --git a/cppu/source/helper/purpenv/Proxy.hxx b/cppu/source/helper/purpenv/Proxy.hxx index 6e00b8caca77..f8f53d6d15dc 100644 --- a/cppu/source/helper/purpenv/Proxy.hxx +++ b/cppu/source/helper/purpenv/Proxy.hxx @@ -32,7 +32,7 @@ namespace cssu = com::sun::star::uno; -class SAL_DLLPRIVATE Proxy : public uno_Interface +class Proxy : public uno_Interface { oslInterlockedCount m_nRef; @@ -76,7 +76,7 @@ public: }; -extern "C" SAL_DLLPRIVATE void SAL_CALL Proxy_free(uno_ExtEnvironment * pEnv, void * pProxy) SAL_THROW_EXTERN_C(); +extern "C" void SAL_CALL Proxy_free(uno_ExtEnvironment * pEnv, void * pProxy) SAL_THROW_EXTERN_C(); #endif diff --git a/cppu/source/uno/EnvStack.cxx b/cppu/source/uno/EnvStack.cxx index 0d56124a4476..f19eeb03ae37 100644 --- a/cppu/source/uno/EnvStack.cxx +++ b/cppu/source/uno/EnvStack.cxx @@ -35,7 +35,7 @@ using namespace com::sun::star; -struct SAL_DLLPRIVATE oslThreadIdentifier_equal +struct oslThreadIdentifier_equal { bool operator()(oslThreadIdentifier s1, oslThreadIdentifier s2) const; }; @@ -48,7 +48,7 @@ bool oslThreadIdentifier_equal::operator()(oslThreadIdentifier s1, oslThreadIden } -struct SAL_DLLPRIVATE oslThreadIdentifier_hash +struct oslThreadIdentifier_hash { size_t operator()(oslThreadIdentifier s1) const; }; |