diff options
author | hjk <[email protected]> | 2025-04-09 10:36:39 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2025-04-10 08:11:05 +0000 |
commit | 6af62f8a66ac3f9e09584d287a738cd1b3116395 (patch) | |
tree | 005836ecfbae4bad5ddf53fd72e71796822a9325 /tests/auto/perfdata | |
parent | 65ab0ff4a3edcca5eb383e5eb32007fd4bd28947 (diff) |
It's effectively the same in Qt 6, and QList is more direct.
Change-Id: I0f23b765f2f8930a715e378212b9bb4f38fcef54
Reviewed-by: Ulf Hermann <[email protected]>
Diffstat (limited to 'tests/auto/perfdata')
-rw-r--r-- | tests/auto/perfdata/tst_perfdata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/perfdata/tst_perfdata.cpp b/tests/auto/perfdata/tst_perfdata.cpp index 5b6894c..9855172 100644 --- a/tests/auto/perfdata/tst_perfdata.cpp +++ b/tests/auto/perfdata/tst_perfdata.cpp @@ -173,7 +173,7 @@ void TestPerfData::testTracingData() PerfParserTestClient client; client.extractTrace(&output); - const QVector<PerfParserTestClient::SampleEvent> samples = client.samples(); + const QList<PerfParserTestClient::SampleEvent> samples = client.samples(); QVERIFY(samples.length() > 0); for (const PerfParserTestClient::SampleEvent &sample : samples) { QCOMPARE(sample.values.size(), 1); |