What is my next step ?
-
OK, I get this run time error.
It does not directly identify the offending code.It identifies QtCore/qlist.h, line 571 and last of my debug messages.
I can find the debug message and set break point there and then step thru the code until I find code using "index"...
Is that about right ?Any other suggestions are welcome.
Cheers" TASK continue...void SettingsDialog::RunPairing()" ASSERT failure in QList<T>::at: "index out of range", file /home/nov25-1/Qt/Nov26/5.15.2/gcc_64/include/QtCore/qlist.h, line 571 11:32:50: /mnt/RAID_124/PROJECTS_May15_BASE_V2/mdi/MDI crashed.
-
OK, I get this run time error.
It does not directly identify the offending code.It identifies QtCore/qlist.h, line 571 and last of my debug messages.
I can find the debug message and set break point there and then step thru the code until I find code using "index"...
Is that about right ?Any other suggestions are welcome.
Cheers" TASK continue...void SettingsDialog::RunPairing()" ASSERT failure in QList<T>::at: "index out of range", file /home/nov25-1/Qt/Nov26/5.15.2/gcc_64/include/QtCore/qlist.h, line 571 11:32:50: /mnt/RAID_124/PROJECTS_May15_BASE_V2/mdi/MDI crashed.
-
Feels like: "I've been there... multiple times" :)
@AnneRanch
Somewhere in your code you are accessing an element from a
QList
which is not available (like 12th element out of a list from 0-10).index out of range
This doesn't mean that you have a variable named
index
. It only tells you what happend.
The index could bei
orx
orbananas
.