diff dwt/internal/cocoa/NSView.d @ 129:ad4e1fe71a5a

Fixed runtime errors
author Jacob Carlborg <doob@me.com>
date Sun, 18 Jan 2009 18:39:46 +0100
parents 62202ce0039f
children
line wrap: on
line diff
--- a/dwt/internal/cocoa/NSView.d	Sat Jan 17 16:26:49 2009 +0100
+++ b/dwt/internal/cocoa/NSView.d	Sun Jan 18 18:39:46 2009 +0100
@@ -240,8 +240,8 @@
 }
 
 public NSArray subviews() {
-    objc.id result = OS.objc_msgSend(this.id, OS.sel_subviews);
-    return result !is null ? new NSArray(result) : null;
+	objc.id result = OS.objc_msgSend(this.id, OS.sel_subviews);
+	return result !is null ? new NSArray(result) : null;
 }
 
 public NSView superview() {