comparison examples/layouts/dynamiclayouts/main.d @ 368:185df9220ea7

Fixed startsWith. Implemented meta-object members as ranges. Freed QMetaObject from stuff that belongs to MetaClass
author Max Samukha <maxter@maxter.com>
date Mon, 28 Jun 2010 21:29:32 +0300
parents 4f909ae70e76
children
comparison
equal deleted inserted replaced
367:f69341b40588 368:185df9220ea7
42 42
43 43
44 import qt.gui.QApplication; 44 import qt.gui.QApplication;
45 import dialog; 45 import dialog;
46 46
47 import std.stdio;
48
47 49
48 int main(string[] args) 50 int main(string[] args)
49 { 51 {
50 scope app = new QApplication(args); 52 scope app = new QApplication(args);
51 scope dialog = new Dialog; 53 scope dialog = new Dialog;
52 return dialog.exec(); 54 return dialog.exec();
53 } 55 }