When I run the program below, where I pass that particular string to a QLineEdit, I get a bunch of errors saying:<br><br> load glyph failed err=6 face=0x9269760, glyph=22961<br> QFontEngine: Glyph neither outline nor bitmap format=0<br>
<br><br>
QtCore.qVersion() returns "4.5.0".<br>
<br><br>------------<br># coding=utf-8<br><br>import sys<br><br>from PyQt4.QtGui import *<br><br>app = QApplication(sys.argv)<br><br>dialog = QDialog()<br>edit = QLineEdit(u"fi $B$"(B a", dialog)<br><br>dialog.exec_()