comparison dwt/internal/cocoa/WebFrameView.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 1a8b3cb347e0
children d8635bb48c7c
comparison
equal deleted inserted replaced
9:e76aa0b07480 10:30a762abda2a
1 module dwt.internal.cocoa; 1 module dwt.internal.cocoa;
2 2
3 public class WebFrameView : NSObject { 3 public class WebFrameView : NSObject {
4 4
5 public this() { 5 public WebFrameView() {
6 super(); 6 super();
7 } 7 }
8 8
9 public this(int id) { 9 public WebFrameView(int id) {
10 super(id); 10 super(id);
11 } 11 }
12 12
13 public bool allowsScrolling() { 13 public bool allowsScrolling() {
14 return OS.objc_msgSend(this.id, OS.sel_allowsScrolling) !is 0; 14 return OS.objc_msgSend(this.id, OS.sel_allowsScrolling) !is 0;