summaryrefslogtreecommitdiffstats
path: root/src/testlib
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-04-28 18:31:50 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-04-29 23:16:54 +0200
commitb6759ff81c1b6ecb7e18144db0b7c9c5884d7f24 (patch)
tree4ec75337b4f502c2700c128bd6cc45dad519d64c /src/testlib
parent23e580f1b4a0a5eb47fcd5aefcdb12ae2a8aad5f (diff)
QAbstractItemModelTester: Fix typos in debug output
Introduced in 2f6faca901442631299af0c0d15b3edf257f225b Change-Id: Iab01bbd572ee1fdc7f590b608d7bf504dbf18769 Reviewed-by: David Faure <david.faure@kdab.com>
Diffstat (limited to 'src/testlib')
-rw-r--r--src/testlib/qabstractitemmodeltester.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testlib/qabstractitemmodeltester.cpp b/src/testlib/qabstractitemmodeltester.cpp
index b2fac18eab..7e4dfeafab 100644
--- a/src/testlib/qabstractitemmodeltester.cpp
+++ b/src/testlib/qabstractitemmodeltester.cpp
@@ -744,7 +744,7 @@ void QAbstractItemModelTesterPrivate::columnsMoved(const QModelIndex &sourcePare
MODELTESTER_COMPARE(changeInFlight, ChangeInFlight::ColumnsMoved);
changeInFlight = ChangeInFlight::None;
- qCDebug(lcModelTest) << "columnsAboutToBeMoved"
+ qCDebug(lcModelTest) << "columnsMoved"
<< "sourceStart=" << sourceStart << "sourceEnd=" << sourceEnd
<< "sourceParent=" << sourceParent
<< "sourceParent data=" << model->data(sourceParent).toString()
@@ -854,7 +854,7 @@ void QAbstractItemModelTesterPrivate::rowsAboutToBeMoved(const QModelIndex &sour
<< "sourceParent=" << sourceParent
<< "sourceParent data=" << model->data(sourceParent).toString()
<< "destinationParent=" << destinationParent
- << "destinationColumn=" << destinationRow;
+ << "destinationRow=" << destinationRow;
}
void QAbstractItemModelTesterPrivate::rowsMoved(const QModelIndex &sourceParent, int sourceStart,
@@ -869,7 +869,7 @@ void QAbstractItemModelTesterPrivate::rowsMoved(const QModelIndex &sourceParent,
<< "sourceParent=" << sourceParent
<< "sourceParent data=" << model->data(sourceParent).toString()
<< "destinationParent=" << destinationParent
- << "destinationColumn=" << destinationRow;
+ << "destinationRow=" << destinationRow;
}
void QAbstractItemModelTesterPrivate::layoutAboutToBeChanged()