Try printing out to std output the following:
[CODE
QString test = "Test";
std::string converted = test.toStdString();
QString test2 = QString::fromStdString(converted);
qDebug()<<test2;
][/CODE]
The output is: "Test"
Try printing out to std output the following:
[CODE
QString test = "Test";
std::string converted = test.toStdString();
QString test2 = QString::fromStdString(converted);
qDebug()<<test2;
][/CODE]
The output is: "Test"
Bookmarks