diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-01-13 12:00:07 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-01-16 13:18:28 +0100 |
commit | 5c3c862c78798bd784bebb56dd9c99b5467333e5 (patch) | |
tree | b8a02b41ff590e609e7fce468245f1e07ec5dd80 /sw/source/uibase | |
parent | 5291c6372df1e04f53a2de13d91108f8ba2cfc31 (diff) |
Missing guard in SwXTextDocument::initializeForTiledRendering()
Change-Id: Ic0b09b13612e92ec069cb72a951431939b979715
Diffstat (limited to 'sw/source/uibase')
-rw-r--r-- | sw/source/uibase/uno/unotxdoc.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/uibase/uno/unotxdoc.cxx b/sw/source/uibase/uno/unotxdoc.cxx index 4bba53506e77..4655298ea7f9 100644 --- a/sw/source/uibase/uno/unotxdoc.cxx +++ b/sw/source/uibase/uno/unotxdoc.cxx @@ -3148,6 +3148,7 @@ Size SwXTextDocument::getDocumentSize() void SwXTextDocument::initializeForTiledRendering() { + SolarMutexGuard aGuard; bool bBookMode = false; sal_Int16 nColumns = 1; |