diff 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
line wrap: on
line diff
--- a/examples/layouts/dynamiclayouts/main.d	Thu Jun 24 13:47:30 2010 +0300
+++ b/examples/layouts/dynamiclayouts/main.d	Mon Jun 28 21:29:32 2010 +0300
@@ -44,10 +44,12 @@
 import qt.gui.QApplication;
 import dialog;
 
+import std.stdio;
+
 
 int main(string[] args)
 {
-	scope app = new QApplication(args);
-	scope dialog = new Dialog;
-	return dialog.exec();
+    scope app = new QApplication(args);
+    scope dialog = new Dialog;
+    return dialog.exec();
 }