remove doubled Q_INIT_RESOURCE calls

This commit is contained in:
Stephen Birarda 2015-02-06 15:28:36 -08:00
parent caf50764b4
commit 41d2da8712
2 changed files with 1 additions and 5 deletions

View file

@ -37,8 +37,6 @@ static BOOL CALLBACK enumWindowsCallback(HWND hWnd, LPARAM lParam) {
int main(int argc, const char * argv[]) {
Q_INIT_RESOURCE(fonts);
#ifdef Q_OS_WIN
// Run only one instance of Interface at a time.
HANDLE mutex = CreateMutex(NULL, FALSE, "High Fidelity Interface");

View file

@ -209,9 +209,7 @@ void QTestWindow::draw() {
}
}
int main(int argc, char** argv) {
Q_INIT_RESOURCE(fonts);
int main(int argc, char** argv) {
QApplication app(argc, argv);
QTestWindow window;
QTimer timer;