debugger: make QVector and std::vector writable

This commit is contained in:
hjk
2011-05-10 20:42:22 +02:00
parent d0b12f8f19
commit 0747859006
4 changed files with 42 additions and 9 deletions

View File

@@ -2604,6 +2604,12 @@ int main(int argc, char *argv[])
testQHash1();
testSignalSlot(argc, argv);
QVector<int> qv;
qv.push_back(2);
std::vector<int> v;
v.push_back(2);
QString hallo = "hallo\nwelt";
QStringList list;
list << "aaa" << "bbb" << "cc";