diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-13 02:37:50 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-25 17:58:18 -0500 |
commit | f883da353a2edf987ae2edecbb2c765a2fdd929d (patch) | |
tree | 35ac3a05d26da414db5bd0e9d0d18f10a1f6385f /sd/source/ui/dlg/dlgass.cxx | |
parent | bac821b200dcc0c11ba6d03fd23ec3b07b15dea8 (diff) |
use SolarMutexGuard to guard the SolarMutex
Diffstat (limited to 'sd/source/ui/dlg/dlgass.cxx')
-rw-r--r-- | sd/source/ui/dlg/dlgass.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/dlg/dlgass.cxx b/sd/source/ui/dlg/dlgass.cxx index bc91b7f8408e..71d09caba9e0 100644 --- a/sd/source/ui/dlg/dlgass.cxx +++ b/sd/source/ui/dlg/dlgass.cxx @@ -886,7 +886,7 @@ void AssistentDlgImpl::TemplateScanDone ( std::vector<TemplateDir*>& rTemplateFolder) { // This method is called from a thread. Therefore we get the solar mutex. - ::vos::OGuard aGuard (Application::GetSolarMutex()); + SolarMutexGuard aGuard; // Copy the contents of the given template folders to a local list. maPresentList.swap (rTemplateFolder); |