diff dwt/internal/cocoa/WebView.d @ 10:30a762abda2a

Revert automatic changes from dwt/internal and dwt/dwthelper. Excluded dwt/internal/image and theme.
author Frank Benoit <benoit@tionex.de>
date Thu, 28 Aug 2008 12:31:10 +0200
parents e831403a80a9
children d8635bb48c7c
line wrap: on
line diff
--- a/dwt/internal/cocoa/WebView.d	Wed Aug 27 14:36:41 2008 +0200
+++ b/dwt/internal/cocoa/WebView.d	Thu Aug 28 12:31:10 2008 +0200
@@ -12,11 +12,11 @@
 
 public class WebView : NSView {
 
-public this() {
+public WebView() {
     super();
 }
 
-public this(int id) {
+public WebView(int id) {
     super(id);
 }
 
@@ -554,7 +554,7 @@
 }
 
 public float textSizeMultiplier() {
-    return cast(float)OS.objc_msgSend_fpret(this.id, OS.sel_textSizeMultiplier);
+    return (float)OS.objc_msgSend_fpret(this.id, OS.sel_textSizeMultiplier);
 }
 
 public void toggleContinuousSpellChecking(id sender) {