summaryrefslogtreecommitdiff
path: root/fpicker/source/aqua/resourceprovider.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'fpicker/source/aqua/resourceprovider.cxx')
-rw-r--r--fpicker/source/aqua/resourceprovider.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/fpicker/source/aqua/resourceprovider.cxx b/fpicker/source/aqua/resourceprovider.cxx
index 658f0c37a0dc..2d5c4595f886 100644
--- a/fpicker/source/aqua/resourceprovider.cxx
+++ b/fpicker/source/aqua/resourceprovider.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.
@@ -31,7 +32,7 @@
#include <osl/diagnose.h>
#include <rtl/ustrbuf.hxx>
-#include <vos/mutex.hxx>
+#include <osl/mutex.hxx>
#include <vcl/svapp.hxx>
#include <tools/resmgr.hxx>
#include <com/sun/star/ui/dialogs/CommonFilePickerElementIds.hpp>
@@ -170,7 +171,7 @@ public:
String aResString;
OUString aResOUString;
- const ::vos::OGuard aGuard( Application::GetSolarMutex() );
+ const SolarMutexGuard aGuard;
try
{
@@ -234,3 +235,5 @@ NSString* CResourceProvider::getResString( sal_Int32 aId )
return result;
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */