I need to append text to QPlainTextEdit without adding a newline to the text, but both methods appendPlainText() and appendHtml() adds
QPlainTextEdit
appendPlainText()
appendHtml()
Like any string:
QTextEdit *myTextEdit = ui->textEdit; myTextEdit->moveCursor (QTextCursor::End); myTextEdit->insertPlainText (myString+"\n");
I tried it and it worked.