summaryrefslogtreecommitdiff
path: root/include/rtl
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2018-05-30 08:06:28 +0200
committerLuboš Luňák <l.lunak@collabora.com>2018-05-30 08:07:07 +0200
commitd4d648878513b1730c970526cf7ef9e481534d06 (patch)
tree646c6f69c334c3eaa8b17f0ed43a468f25d8b152 /include/rtl
parent102fc242419a6fe1ad6e1efa16dff309773a21a4 (diff)
fix incorrect example in rtl_Instance docs
Change-Id: I1cb0c9bfca7ebcf8de96ef25554a41d52b9d7df5
Diffstat (limited to 'include/rtl')
-rw-r--r--include/rtl/instance.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rtl/instance.hxx b/include/rtl/instance.hxx
index 7ff19049f101..0f673e636f81 100644
--- a/include/rtl/instance.hxx
+++ b/include/rtl/instance.hxx
@@ -219,7 +219,7 @@ namespace {
T * getInstance()
{
return rtl_Instance< T, InitInstance,
- ::osl::Mutex, ::osl::GetGlobalMutex,
+ ::osl::MutexGuard, ::osl::GetGlobalMutex,
Data, InitData >::create(
InitInstance(), ::osl::GetGlobalMutex(), InitData());
}