comparison examples/tutorials/tutorial/t5/main.d @ 208:be08f1b4ba39

--
author SokoL_SD
date Tue, 14 Jul 2009 09:34:48 +0000
parents e78566595089
children 256ab6cb8e85
comparison
equal deleted inserted replaced
207:71101646ab25 208:be08f1b4ba39
69 layout.addWidget(slider); 69 layout.addWidget(slider);
70 setLayout(layout); 70 setLayout(layout);
71 } 71 }
72 } 72 }
73 73
74 int main(char[][] args) 74 int main(string[] args)
75 { 75 {
76 auto app = new QApplication(args); 76 auto app = new QApplication(args);
77 auto widget = new MyWidget; 77 auto widget = new MyWidget;
78 widget.show(); 78 widget.show();
79 return app.exec(); 79 return app.exec();