Hi Frankie,
Here's a link to a GitHub repository with Qt5 autoexp.dat files for recent versions of Visual Studio: https://github.com/qtproject/qt-labs...ols/Qt4EEAddin
I would attach the related file(s) but it seems as if the forum won't let me upload files greater than around 30kb in size.
Also, I found the visualization for QVector given in these files to be insufficient ('error' shows for each item in the QVector), but the first answer posted here worked for me! The solution is to replace the 3 occurrences (in the visualizer section for QVector) of
expr: $c.p->array[$i]
expr: $c.p->array[$i]
To copy to clipboard, switch view to plain text mode
with
expr: (($T1*)((char*)(&$c.d->ref)+(int)$c.d->offset))[$i],
expr: (($T1*)((char*)(&$c.d->ref)+(int)$c.d->offset))[$i],
To copy to clipboard, switch view to plain text mode
(Wish I really had time to understand and verify this fix and push a change to the repository mentioned, but not currently)
I hope that helps!
Jake
Bookmarks