summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/container/containermultiplexer.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/comphelper/source/container/containermultiplexer.cxx b/comphelper/source/container/containermultiplexer.cxx
index 7b8ecc716c63..7f677790e454 100644
--- a/comphelper/source/container/containermultiplexer.cxx
+++ b/comphelper/source/container/containermultiplexer.cxx
@@ -18,7 +18,6 @@
*/
#include <comphelper/containermultiplexer.hxx>
-#include <comphelper/uno3.hxx>
#include <osl/diagnose.h>
namespace comphelper
@@ -104,7 +103,7 @@ namespace comphelper
if (m_pListener)
m_pListener->setAdapter(this);
- ::comphelper::increment(m_refCount);
+ osl_atomic_increment(&m_refCount);
try
{
m_xContainer->addContainerListener(this);
@@ -113,7 +112,7 @@ namespace comphelper
{
OSL_FAIL("Exception caught!");
}
- ::comphelper::decrement(m_refCount);
+ osl_atomic_decrement(&m_refCount);
}