summaryrefslogtreecommitdiff
path: root/vcl/source/helper/threadex.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/helper/threadex.cxx')
-rw-r--r--vcl/source/helper/threadex.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/vcl/source/helper/threadex.cxx b/vcl/source/helper/threadex.cxx
index cff1ec4a7d82..ad351410e2c2 100644
--- a/vcl/source/helper/threadex.cxx
+++ b/vcl/source/helper/threadex.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.
@@ -101,7 +102,7 @@ IMPL_LINK( SolarThreadExecutor, worker, void*, EMPTYARG )
long SolarThreadExecutor::impl_execute( const TimeValue* _pTimeout )
{
- if( ::vos::OThread::getCurrentIdentifier() == Application::GetMainThreadIdentifier() )
+ if( ::osl::Thread::getCurrentIdentifier() == Application::GetMainThreadIdentifier() )
{
osl_setCondition( m_aStart );
m_nReturn = doIt();
@@ -125,3 +126,5 @@ long SolarThreadExecutor::impl_execute( const TimeValue* _pTimeout )
}
return m_nReturn;
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */