summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-03 13:13:38 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-03 16:05:09 +0100
commita0008fd7c32b9bd5c3b00f262ef0718cde608be2 (patch)
tree03c9e5f9dcc95f8a826e50c98f8f787ec2a7ec99 /cppu
parenta61f3161a48225c4c9987b11239d76d2b0f98006 (diff)
Remove needless SAL_DLLPRIVATE annotations
Change-Id: Iafaf65e5b25f5d9e00e1dc73db280f6605ad1de5
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/AffineBridge/AffineBridge.cxx6
-rw-r--r--cppu/source/UnsafeBridge/UnsafeBridge.cxx2
-rw-r--r--cppu/source/helper/purpenv/Proxy.hxx4
-rw-r--r--cppu/source/uno/EnvStack.cxx4
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;
};