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.cpp
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#include <errno.h>
4
5#include <QDebug>
7
9
10void qScreenCheckError(int rc, const char *funcInfo, const char *message, bool critical)
11{
13 && QQnxIntegration::instance()->screenContext() != 0) {
14 rc = screen_flush_context(QQnxIntegration::instance()->screenContext(), 0);
15 }
16
17 if (Q_UNLIKELY(rc)) {
18 qCDebug(lcQpaQnx, "%s - Screen: %s - Error: %s (%i)", funcInfo, message, strerror(errno), errno);
19
20 if (Q_UNLIKELY(critical))
21 qCritical("%s - Screen: %s - Error: %s (%i)", funcInfo, message, strerror(errno), errno);
22 else
23 qWarning("%s - Screen: %s - Error: %s (%i)", funcInfo, message, strerror(errno), errno);
24 }
25}
26
27QT_END_NAMESPACE
static QQnxIntegration * instance()
Combined button and popup list for selecting options.
QT_BEGIN_NAMESPACE void qScreenCheckError(int rc, const char *funcInfo, const char *message, bool critical)