Mercurial > hg > svcore
comparison base/StringBits.cpp @ 844:f5cd33909744
Drop toStdString, with debug header we can stream QStrings
author | Chris Cannam |
---|---|
date | Tue, 26 Nov 2013 13:43:31 +0000 |
parents | b4a8d8221eaf |
children | 6a94bb528e9d |
comparison
equal
deleted
inserted
replaced
843:e802e550a1f2 | 844:f5cd33909744 |
---|---|
142 cout << tests[j] << endl; | 142 cout << tests[j] << endl; |
143 cout << "->" << endl << "("; | 143 cout << "->" << endl << "("; |
144 QStringList l = splitQuoted(tests[j], ' '); | 144 QStringList l = splitQuoted(tests[j], ' '); |
145 for (int i = 0; i < l.size(); ++i) { | 145 for (int i = 0; i < l.size(); ++i) { |
146 if (i > 0) cout << ";"; | 146 if (i > 0) cout << ";"; |
147 cout << l[i].toStdString(); | 147 cout << l[i]; |
148 } | 148 } |
149 cout << ")" << endl; | 149 cout << ")" << endl; |
150 } | 150 } |
151 } | 151 } |
152 | 152 |