summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/xcb/qxcbintegration.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2018-01-13 23:22:10 +0200
committerOrgad Shaneh <orgads@gmail.com>2018-01-15 13:57:22 +0000
commit6e5edb5a15b8e6f9a2a4eadee91d6bf0b6cca355 (patch)
treee3cea7393cd1e3c17b2ebfd84ad527301edbbb92 /src/plugins/platforms/xcb/qxcbintegration.cpp
parent66e56762e1183fc02323f9e95db20a2e13d2f19e (diff)
XCB: Replace qDebug with qCDebug
Change-Id: I984c3e3288aa4d0b7185ea88ae0c4cf4627a2da3 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'src/plugins/platforms/xcb/qxcbintegration.cpp')
-rw-r--r--src/plugins/platforms/xcb/qxcbintegration.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/platforms/xcb/qxcbintegration.cpp b/src/plugins/platforms/xcb/qxcbintegration.cpp
index 72d31060db..10f3000dd2 100644
--- a/src/plugins/platforms/xcb/qxcbintegration.cpp
+++ b/src/plugins/platforms/xcb/qxcbintegration.cpp
@@ -176,8 +176,8 @@ QXcbIntegration::QXcbIntegration(const QStringList &parameters, int &argc, char
#if defined(QT_DEBUG)
if (!noGrabArg && !doGrabArg && underDebugger) {
- qDebug("Qt: gdb: -nograb added to command-line options.\n"
- "\t Use the -dograb option to enforce grabbing.");
+ qCDebug(lcQpaXcb, "Qt: gdb: -nograb added to command-line options.\n"
+ "\t Use the -dograb option to enforce grabbing.");
}
#endif
m_canGrab = (!underDebugger && !noGrabArg) || (underDebugger && doGrabArg);
@@ -213,7 +213,7 @@ QXcbIntegration::QXcbIntegration(const QStringList &parameters, int &argc, char
#if QT_CONFIG(xcb_native_painting)
if (nativePaintingEnabled()) {
- qDebug("QXCB USING NATIVE PAINTING");
+ qCDebug(lcQpaXcb, "QXCB USING NATIVE PAINTING");
qt_xcb_native_x11_info_init(defaultConnection());
}
#endif