Thanks, but neither
ts<<11<<" Freunde";
ts.flush();
std::cout<<"1."<<ts.readAll().toStdString()<<'\n'<<"2."<<s.toStdString();
QString s;
QTextStream ts(&s);
ts<<11<<" Freunde";
ts.flush();
std::cout<<"1."<<ts.readAll().toStdString()<<'\n'<<"2."<<s.toStdString();
To copy to clipboard, switch view to plain text mode
nor
ts<<11<<" Freunde";
std::cout<<"1."<<ts.readAll().toStdString()<<'\n'<<"2."<<s.toStdString();
std::cout.flush();
QString s;
QTextStream ts(&s);
ts<<11<<" Freunde";
std::cout<<"1."<<ts.readAll().toStdString()<<'\n'<<"2."<<s.toStdString();
std::cout.flush();
To copy to clipboard, switch view to plain text mode
nor a combination ob both helps. But perhaps we are on the right track
I'm using Qt 4.1.4 on Linux.
Bookmarks