comparison examples/mainwindows/dockwidgets/main.d @ 61:a2871e6b8b15

drcc: automatic initialization of resources with program start (disabled with option -no-static-initialize) demos: resources fixes. examples: resources fixes.
author SokoL_SD
date Tue, 19 May 2009 10:48:30 +0000
parents e78566595089
children a212c97edcd2
comparison
equal deleted inserted replaced
60:fbf7881c8b0f 61:a2871e6b8b15
40 40
41 41
42 int main(char[][] args) 42 int main(char[][] args)
43 { 43 {
44 scope app = new QApplication(args); 44 scope app = new QApplication(args);
45 // Q_INIT_RESOURCE(dockwidgets);
46 scope mainWin = new MainWindow; 45 scope mainWin = new MainWindow;
47 mainWin.show(); 46 mainWin.show();
48 return app.exec(); 47 return app.exec();
49 } 48 }