I\'m completely new to C++ and Qt.
I want to populate a QTextEdit object with QTextBlocks, how do I do that?
QTextEdit
QTextBlocks
e.g. If I hav
You should check the documentation here
You could assign your string to a QString and then add that to the QTextEdit, or you could parse the QString using section() see here