Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
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) \
14qScreenCheckError(x, Q_FUNC_INFO, message, false)
15
16#define Q_SCREEN_CRITICALERROR(x, message) \
17qScreenCheckError(x, Q_FUNC_INFO, message, true)
18
20
21#endif // QQNXGLOBAL_H
Combined button and popup list for selecting options.
GLuint GLsizei const GLchar * message
QT_BEGIN_NAMESPACE void qScreenCheckError(int rc, const char *funcInfo, const char *message, bool critical)