summaryrefslogtreecommitdiffstats
path: root/tests/manual/diaglib/nativewindowdump.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/diaglib/nativewindowdump.cpp')
-rw-r--r--tests/manual/diaglib/nativewindowdump.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/tests/manual/diaglib/nativewindowdump.cpp b/tests/manual/diaglib/nativewindowdump.cpp
index a854e8a790e..2937665bad4 100644
--- a/tests/manual/diaglib/nativewindowdump.cpp
+++ b/tests/manual/diaglib/nativewindowdump.cpp
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2016 The Qt Company Ltd.
+** Copyright (C) 2021 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
@@ -28,25 +28,20 @@
#include "nativewindowdump.h"
-#if QT_VERSION >= 0x050000
-# include <QtGui/QGuiApplication>
-# include <qpa/qplatformnativeinterface.h>
-#endif
-
+#include <QtGui/QGuiApplication>
+#include <qpa/qplatformnativeinterface.h>
#include <QtCore/QDebug>
namespace QtDiag {
void dumpNativeWindows(WId wid)
{
-#if QT_VERSION >= 0x050000
QPlatformNativeInterface *ni = QGuiApplication::platformNativeInterface();
QString result;
QMetaObject::invokeMethod(ni, "dumpNativeWindows", Qt::DirectConnection,
Q_RETURN_ARG(QString, result),
Q_ARG(WId, wid));
qDebug().noquote() << result;
-#endif // Qt 5
}
void dumpNativeQtTopLevels()