comparison examples/draganddrop/dropsite/main.d @ 206:aeeaae4dd540

'Dropsite' fixes for d2.
author SokoL_SD
date Tue, 14 Jul 2009 09:13:27 +0000
parents d54443f1ce1e
children 8aaa84d48451
comparison
equal deleted inserted replaced
205:3dadfee97421 206:aeeaae4dd540
40 ****************************************************************************/ 40 ****************************************************************************/
41 41
42 import qt.gui.QApplication; 42 import qt.gui.QApplication;
43 import dropsitewindow; 43 import dropsitewindow;
44 44
45 int main(char[][] args) 45 int main(string[] args)
46 { 46 {
47 scope app = new QApplication(args); 47 scope app = new QApplication(args);
48 scope window = new DropSiteWindow; 48 scope window = new DropSiteWindow;
49 window.show(); 49 window.show();
50 return app.exec(); 50 return app.exec();