I am trying to construct a string (QString) made up of 'bullets' (black small circle, U+2022).
Anyone know how I'd do this?
Thanks in advance, Wes
eg: "* * * * * *" but bullets instead of asterisks
How about
QString circle(L"\u2022");
QString circles(5, QChar(0x2022));Is is not the syntax like.
new QString(L"**");
And ensure that your source file is UTF-8 encoded?
Sorry I can't try that myself.
new isn't that common.