what happens if you try
QString ports;
ports.append("first, ").append("second, ").append("third");
?
what happens if you try
QString ports;
ports.append("first, ").append("second, ").append("third");
?
If you have a problem, CUT and PASTE your code. Do not retype or simplify it. Give a COMPLETE and COMPILABLE example of your problem. Otherwise we are all guessing the problem from a fabrication where relevant details are often missing.
Axtroz (17th July 2012)
Using a QString instead of a QStringList works. I still don't understand why the list isn't getting in... I'll use QString::split to get a QStringList. Thanks!
Bookmarks