summaryrefslogtreecommitdiff
path: root/dtrans/source/win32/dnd/targetdropcontext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dtrans/source/win32/dnd/targetdropcontext.cxx')
-rw-r--r--dtrans/source/win32/dnd/targetdropcontext.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/dtrans/source/win32/dnd/targetdropcontext.cxx b/dtrans/source/win32/dnd/targetdropcontext.cxx
index 63be68989d1f..93705a2dba9d 100644
--- a/dtrans/source/win32/dnd/targetdropcontext.cxx
+++ b/dtrans/source/win32/dnd/targetdropcontext.cxx
@@ -17,8 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <rtl/unload.h>
-
#include "targetdropcontext.hxx"
using namespace ::com::sun::star::datatransfer::dnd;
@@ -26,10 +24,8 @@ using namespace ::cppu;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
-extern rtl_StandardModuleCount g_moduleCount;
TargetDropContext::TargetDropContext( DropTarget* p)
{
- g_moduleCount.modCnt.acquire( &g_moduleCount.modCnt );
m_pDropTarget= p;
p->acquire();
}
@@ -37,7 +33,6 @@ TargetDropContext::TargetDropContext( DropTarget* p)
TargetDropContext::~TargetDropContext()
{
m_pDropTarget->release();
- g_moduleCount.modCnt.release( &g_moduleCount.modCnt );
}
void SAL_CALL TargetDropContext::acceptDrop( sal_Int8 dropOperation )