我看到有人这样设置字体:
QApplication app( argc, argv );
QFont font("simsun",24,75,FALSE,QFont::Unicode); //for ARM
app.setFont(font); //for ARM
但是我查了一下API,QFont ( const QString & family, int pointSize = 12, int weight = Normal, bool italic = FALSE )是这样定义的,
参数怎么对不上啊?