comparison dwt/internal/cocoa/WebFrame.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
10 *******************************************************************************/ 10 *******************************************************************************/
11 module dwt.internal.cocoa; 11 module dwt.internal.cocoa;
12 12
13 public class WebFrame : NSObject { 13 public class WebFrame : NSObject {
14 14
15 public this() { 15 public WebFrame() {
16 super(); 16 super();
17 } 17 }
18 18
19 public this(int id) { 19 public WebFrame(int id) {
20 super(id); 20 super(id);
21 } 21 }
22 22
23 public DOMDocument DOMDocument() { 23 public DOMDocument DOMDocument() {
24 int result = OS.objc_msgSend(this.id, OS.sel_DOMDocument); 24 int result = OS.objc_msgSend(this.id, OS.sel_DOMDocument);