summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-07-24 13:09:28 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-07-24 14:01:32 +0100
commit442b788bc80e20783bdb881aa0cbbc253f1a47b0 (patch)
tree88ffdba472d2b0cf927b2292e102ec3e8c24ecd6
parent288e005ef7ed5b931935da2e1266b95fc9f16cdf (diff)
Resolves: tdf#90609 SolarMutex assert on threaded load
Change-Id: I81a784ab506d0d3ae266d7341b8ff7a163dcd8d2
-rw-r--r--toolkit/source/awt/vclxfont.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/toolkit/source/awt/vclxfont.cxx b/toolkit/source/awt/vclxfont.cxx
index 9aece8bc85c6..a4b0c73a2d2a 100644
--- a/toolkit/source/awt/vclxfont.cxx
+++ b/toolkit/source/awt/vclxfont.cxx
@@ -29,6 +29,7 @@
#include <sal/alloca.h>
#include <vcl/outdev.hxx>
+#include <vcl/svapp.hxx>
// class VCLXFont
@@ -200,6 +201,7 @@ sal_Bool VCLXFont::hasGlyphs( const OUString& aText )
throw(::com::sun::star::uno::RuntimeException, std::exception)
{
::osl::Guard< ::osl::Mutex > aGuard( GetMutex() );
+ SolarMutexGuard aSolarGuard;
OutputDevice* pOutDev = VCLUnoHelper::GetOutputDevice( mxDevice );
if ( pOutDev )