Dup Goto 📝

QtDebugging

PT2/aw/dev/qt qt cpp debug print 07-31 13:46:42
To Pop
12 lines, 34 words, 348 chars Monday 2023-07-31 13:46:42

Printing to console

See this stackoverflow question.

#include <QtGlobal>
...
QString s = "mr flibble";
qDebug("%s", qUtf8Printable(s));
// or
qDebug(qUtf8Printable(s));
// or
qDebug().nospace() << "abc" << s << qPrintable(s) << "def";