edbee - Qt Editor Library v0.11.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
debug.h
Go to the documentation of this file.
1// edbee - Copyright (c) 2012-2025 by Rick Blommers and contributors
2// SPDX-License-Identifier: MIT
3
4#pragma once
5
7
9
10#if defined(QT_DEBUG)
12 #define Q_ASSERT_GUI_THREAD Q_ASSERT( qApp->thread() == QThread::currentThread( ) )
13 #define Q_ASSERT_NOT_GUI_THREAD Q_ASSERT( qApp->thread() != QThread::currentThread( ) )
14#else
15 #define Q_ASSERT_GUI_THREAD
16 #define Q_ASSERT_NOT_GUI_THREAD
17#endif
18
19
20