summaryrefslogtreecommitdiff
path: root/svtools/source/control/asynclink.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/control/asynclink.cxx')
-rw-r--r--[-rwxr-xr-x]svtools/source/control/asynclink.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/svtools/source/control/asynclink.cxx b/svtools/source/control/asynclink.cxx
index 7231470528d5..9a48cf0c73a1 100755..100644
--- a/svtools/source/control/asynclink.cxx
+++ b/svtools/source/control/asynclink.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -29,7 +30,7 @@
#include "precompiled_svtools.hxx"
#include <svtools/asynclink.hxx>
-#include <vos/mutex.hxx>
+#include <osl/mutex.hxx>
#include <tools/debug.hxx>
#include <vcl/timer.hxx>
#include <vcl/svapp.hxx>
@@ -39,7 +40,7 @@ namespace svtools {
void AsynchronLink::CreateMutex()
{
- if( !_pMutex ) _pMutex = new vos::OMutex;
+ if( !_pMutex ) _pMutex = new osl::Mutex;
}
void AsynchronLink::Call( void* pObj, sal_Bool
@@ -137,3 +138,5 @@ void AsynchronLink::Call_Impl( void* pArg )
}
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */