diff examples/layouts/borderlayout/main.d @ 204:6aeaf24018d7

more D2 examples fixes
author eldar
date Mon, 13 Jul 2009 23:16:08 +0000
parents c28c0340fdf3
children
line wrap: on
line diff
--- a/examples/layouts/borderlayout/main.d	Mon Jul 13 17:27:34 2009 +0000
+++ b/examples/layouts/borderlayout/main.d	Mon Jul 13 23:16:08 2009 +0000
@@ -47,9 +47,9 @@
 
 int main(string[] args)
 {
-	scope app = new QApplication(args);
-	scope window = new Window;
-	window.show();
-	return app.exec();
+    scope app = new QApplication(args);
+    scope window = new Window;
+    window.show();
+    return app.exec();
 }