I try to do the following:
QList a; foreach(QString& s, a) { s += \"s\"; }
Which looks like it should be legitimate but
or you can use
QList a; BOOST_FOREACH(QString& s, a) { s += "s"; }