QtCreator 2.7.0 でプログラムを実行すると、空白のアプリケーション ウィンドウが表示されます。リリースフォルダーで実行可能ファイルを実行すると、機能します。何が問題になる可能性がありますか?
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel topLevelLabel;
QPixmap pixmap("gem.jpg");
topLevelLabel.setPixmap(pixmap);
topLevelLabel.setMask(pixmap.mask());
topLevelLabel.show();
return app.exec();
}