summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorAron Budea <aron.budea@collabora.com>2017-05-09 23:22:17 +0200
committerAron Budea <aron.budea@collabora.com>2017-05-10 06:16:59 +0200
commit910ead9c8344f32ba3d280a777306490aed5dac2 (patch)
tree30195a527e1707301a7f92d45f938c3db26f1421 /desktop
parente93cf20603e201be29691b83f02b3282b79851e4 (diff)
tdf#104312: add missing #include
It wasn't needed on master, but libreoffice-5-3 didn't compile with the change, let's have it in both branches. Change-Id: I3875cc71d3fee34504573e7148b91c1bdd4c6764 Reviewed-on: https://gerrit.libreoffice.org/37442 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Aron Budea <aron.budea@collabora.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/app.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 45d9830ac25f..c6eafe70bb46 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -24,6 +24,7 @@
#include <sal/config.h>
#include <iostream>
+#include <mutex>
#if defined UNX
#include <signal.h>
#endif
@@ -480,7 +481,7 @@ OUString ReplaceStringHookProc( const OUString& rStr )
sBrandName = BrandName::get();
sVersion = Version::get();
sAboutBoxVersion = AboutBoxVersion::get();
- sAboutBoxVersionSuffix =AboutBoxVersionSuffix::get();
+ sAboutBoxVersionSuffix = AboutBoxVersionSuffix::get();
sExtension = Extension::get();
if ( sBrandName.isEmpty() )