diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-16 03:20:00 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-25 19:55:38 -0500 |
commit | d88b292704957818eff9a348a524b5c90b40031b (patch) | |
tree | eabf039491304b2c13f3bd77ca0b6d58c3dba1b8 /tools/source/misc | |
parent | 98b2c08dff4d00b3e7a2e001c326ebe27dae4549 (diff) |
merge vosremoval-mutex.diff
In practice the changeset is 'inspired' by vosremoval-mutex.diff
but was essentially redone manually
Diffstat (limited to 'tools/source/misc')
-rw-r--r-- | tools/source/misc/solarmutex.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/source/misc/solarmutex.cxx b/tools/source/misc/solarmutex.cxx index 89abad90e025..8bede4e6869a 100644 --- a/tools/source/misc/solarmutex.cxx +++ b/tools/source/misc/solarmutex.cxx @@ -32,14 +32,14 @@ namespace tools { - static ::vos::IMutex* pSolarMutex = 0; + static ::osl::SolarMutex* pSolarMutex = 0; - ::vos::IMutex* SolarMutex::GetSolarMutex() + ::osl::SolarMutex* SolarMutex::GetSolarMutex() { return pSolarMutex; } - void SolarMutex::SetSolarMutex( ::vos::IMutex* pMutex ) + void SolarMutex::SetSolarMutex( ::osl::SolarMutex* pMutex ) { pSolarMutex = pMutex; } |