@Danielpopo
Hi
super.
What i meant was that sometimes
integers do not convert to strings as expected with +
int number=888;
QString a="a";
QString b="b";
QString result=a+number+b;
qDebug() <<"-------" << result;
expected a888b
got axb
so i was not sure if all was strings in your statement. Since it work, you didnt have such case :)