Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qqnxglobal.h
Go to the documentation of this file.
1// Copyright (C) 2011 - 2014 BlackBerry Limited. All rights reserved.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QQNXGLOBAL_H
5#define QQNXGLOBAL_H
6
7#include <qglobal.h>
8
10
11void qScreenCheckError(int rc, const char *funcInfo, const char *message, bool critical);
12
13#define Q_SCREEN_CHECKERROR(x, message) qScreenCheckError
14 (x, Q_FUNC_INFO, message, false)
15
16#define Q_SCREEN_CRITICALERROR(x, message) qScreenCheckError
17 (x, Q_FUNC_INFO, message, true)
18
19QT_END_NAMESPACE
20
21#endif // QQNXGLOBAL_H
Q_LOGGING_CATEGORY(lcEventDispatcher, "qt.eventdispatcher")
#define Q_SCREEN_CRITICALERROR(x, message)
Definition qqnxglobal.h:16
QT_BEGIN_NAMESPACE void qScreenCheckError(int rc, const char *funcInfo, const char *message, bool critical)
#define Q_SCREEN_CHECKERROR(x, message)
Definition qqnxglobal.h:13