Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.3.3
-
None
Description
Using QTextStream's endl with x field width will generate blank characters in front of the outputted word.
Example:
QTextStream stream( stdout );
stream.setFieldAlignment(QTextStream::AlignLeft);
stream.setFieldWidth(20);
stream << "test" << endl;
stream << "test" << endl;
output:
test
test