Меняю задний фон через QTextCharFormat:
C++ (Qt)
QTextEdit * editor = new QTextEdit();
...
QTextCharFormat textCharFormat;
textCharFormat.setBackground( Qt::red );
editor->mergeCurrentCharFormat( textCharFormat );
Как теперь удалить задний фон у текста?