diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-25 03:11:42 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-25 03:11:42 +0200 |
commit | 0a1a0e9df00f37a210b67a11cf8f99550cafeeaf (patch) | |
tree | 35da3c9a2d6464025dc324647253966d4a63a351 /options/scoped.cpp | |
parent | a4c9807acacc87f323f31d252a37c0ed2029ee5b (diff) |
cleanups only
Diffstat (limited to 'options/scoped.cpp')
-rw-r--r-- | options/scoped.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options/scoped.cpp b/options/scoped.cpp index 2974dfdb..8f1ef202 100644 --- a/options/scoped.cpp +++ b/options/scoped.cpp @@ -27,10 +27,10 @@ static void ensure_thread() { // only as a bug check - if (qApp == nullptr) + if (qApp == nullptr) // NOLINT abort(); - const QThread* ui_thread = qApp->thread(); + const QThread* ui_thread = qApp->thread(); // NOLINT const QThread* curthread = QThread::currentThread(); if (ui_thread == nullptr) |