aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/stackhandler.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2024-07-31 08:13:55 +0200
committerhjk <[email protected]>2024-07-31 07:47:02 +0000
commitbf0041919bcfb1bbf8f5c4498938e8aebffbe290 (patch)
tree65934d3f29633207cb1896a36351281218f69335 /src/plugins/debugger/stackhandler.cpp
parent35deb730cb24064fec4f0b91d0e87139a375b8e3 (diff)
Debugger: Replace QVector with QList
The QContainer Naming War is over. QList won. Change-Id: I8193b1b51619502533b74d6e965ec9b664f8dbce Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/debugger/stackhandler.cpp')
-rw-r--r--src/plugins/debugger/stackhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/stackhandler.cpp b/src/plugins/debugger/stackhandler.cpp
index d8ca3cad06b..fa39d3c62fc 100644
--- a/src/plugins/debugger/stackhandler.cpp
+++ b/src/plugins/debugger/stackhandler.cpp
@@ -346,7 +346,7 @@ static QString selectedText(QWidget *widget, bool useAll)
QTC_ASSERT(model, return {});
const int ncols = model->columnCount(QModelIndex());
- QVector<int> largestColumnWidths(ncols, 0);
+ QList<int> largestColumnWidths(ncols, 0);
QSet<QModelIndex> selected;
if (QItemSelectionModel *selection = view->selectionModel()) {