summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorJüri Valdmann <juri.valdmann@qt.io>2019-08-13 13:45:51 +0200
committerJüri Valdmann <juri.valdmann@qt.io>2019-08-13 15:42:26 +0200
commit5a515d40dc05e24db448da93e4149baffcd25d20 (patch)
treef9be041872f6dcc14ac590be5abc0d8e1bf3cd6a /tests/auto
parent414a61978932a6525bb15c2d6c06bd5e3be6608a (diff)
Fix missing semicolon in tst_qwebengineprofile.cpp
Change-Id: Iaf4e0acf2097308fe988350a10441c7313cb2bb3 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/widgets/qwebengineprofile/tst_qwebengineprofile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/widgets/qwebengineprofile/tst_qwebengineprofile.cpp b/tests/auto/widgets/qwebengineprofile/tst_qwebengineprofile.cpp
index dd059791d..0fc494a36 100644
--- a/tests/auto/widgets/qwebengineprofile/tst_qwebengineprofile.cpp
+++ b/tests/auto/widgets/qwebengineprofile/tst_qwebengineprofile.cpp
@@ -298,7 +298,7 @@ protected:
private:
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
- mutable QMutex m_mutex{QMutex::Recursive}
+ mutable QMutex m_mutex{QMutex::Recursive};
using QRecursiveMutex = QMutex;
#else
mutable QRecursiveMutex m_mutex;