diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-02-27 09:32:29 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-02-27 09:45:58 +0000 |
commit | 84fa063b4ce1bd6a8996c20c89e238ee38bcdcfe (patch) | |
tree | 1e16030b0d9b867aaf37aeba6ed6625f5009becc /desktop | |
parent | b36d555440b86d8293b188e4d99ec8682a2139a5 (diff) |
fix msvc2005 build
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/officeipcthread.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx index 5943978e24c1..b2c65669c058 100644 --- a/desktop/source/app/officeipcthread.cxx +++ b/desktop/source/app/officeipcthread.cxx @@ -520,7 +520,7 @@ OfficeIPCThread::Status OfficeIPCThread::EnableOfficeIPCThread() TimeValue aTimeValue; aTimeValue.Seconds = 0; aTimeValue.Nanosec = 10000000; // 10ms - osl::Thread::wait( aTimeValue ); + salhelper::Thread::wait( aTimeValue ); } } while ( nPipeMode == PIPEMODE_DONTKNOW ); @@ -897,7 +897,7 @@ void OfficeIPCThread::execute() TimeValue tval; tval.Seconds = 1; tval.Nanosec = 0; - osl::Thread::wait( tval ); + salhelper::Thread::wait( tval ); } } while( schedule() ); } |