Search code examples
htmlqtescapingrtfqmessagebox

How to escape user-provided text as RTF in Qt4 before using it in eg. QMessageBox?


I recently discovered that QMessageBox parses provided text as HTML subset. I want to use it along with user-provided text (name for an item). How should I escape user's text to prevent interpreting it as RTF/HTML?


Solution

  • Use Qt::escape(const QString& plain) function to escape HTML entities.