comparison examples/opengl/hellogl/main.d @ 207:71101646ab25

more D2 examples fixes
author SokoL_SD
date Tue, 14 Jul 2009 09:25:04 +0000
parents e78566595089
children
comparison
equal deleted inserted replaced
206:aeeaae4dd540 207:71101646ab25
37 37
38 import qt.gui.QApplication; 38 import qt.gui.QApplication;
39 39
40 import window; 40 import window;
41 41
42 int main(char[][] args) 42 int main(string[] args)
43 { 43 {
44 scope app = new QApplication(args); 44 scope app = new QApplication(args);
45 scope window = new Window; 45 scope window = new Window;
46 window.show(); 46 window.show();
47 return app.exec(); 47 return app.exec();