summaryrefslogtreecommitdiffstats
path: root/tests/manual/diaglib/nativewindowdump_win.cpp
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-07-06 16:37:47 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-07-07 11:48:45 +0200
commitd33655a9531b750e1574742ff575f871c19ed808 (patch)
tree8b90d1878dd5f0d9ea38bc048b22f718273bb802 /tests/manual/diaglib/nativewindowdump_win.cpp
parenta02d2d3f22acbf9afb349964f5da00d0e91af887 (diff)
Use QList instead of QVector in other qtbase tests
Task-number: QTBUG-84469 Change-Id: Ie0455c890c048c52eacad1badd6d21df999badf9 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'tests/manual/diaglib/nativewindowdump_win.cpp')
-rw-r--r--tests/manual/diaglib/nativewindowdump_win.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/manual/diaglib/nativewindowdump_win.cpp b/tests/manual/diaglib/nativewindowdump_win.cpp
index d99a3a3d388..8fbd634937a 100644
--- a/tests/manual/diaglib/nativewindowdump_win.cpp
+++ b/tests/manual/diaglib/nativewindowdump_win.cpp
@@ -29,11 +29,11 @@
#include "nativewindowdump.h"
#include "qwindowdump.h"
-#include <QtCore/QTextStream>
-#include <QtCore/QSharedPointer>
#include <QtCore/QDebug>
+#include <QtCore/QList>
#include <QtCore/QRect>
-#include <QtCore/QVector>
+#include <QtCore/QSharedPointer>
+#include <QtCore/QTextStream>
#include <QtCore/qt_windows.h>
@@ -253,7 +253,7 @@ static void dumpNativeWindowRecursionByZ(HWND hwnd, DumpContext *dc)
}
}
-typedef QVector<WId> WIdVector;
+typedef QList<WId> WIdVector;
static void dumpNativeWindows(const WIdVector& wins)
{