QT中国語の文字化けし問題


#include <QtGui/QApplication>
#include <QPushButton>
#include <QTextCodec>

#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    //     UTF-8,         
    QTextCodec *codec = QTextCodec::codecForName("UTF-8");
    QTextCodec::setCodecForLocale(codec);
    QTextCodec::setCodecForCStrings(codec);
    QTextCodec::setCodecForTr(codec);
//    MainWindow w;
//    w.show();
    QPushButton button("  ");
    button.show();
    return a.exec();
}