comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/custom/CTabFolderEvent.d @ 9:950d84783eac

Removing direct tango deps.
author Frank Benoit <benoit@tionex.de>
date Mon, 09 Mar 2009 14:26:40 +0100
parents 6dd524f61e62
children d46287db17ed
comparison
equal deleted inserted replaced
8:2847134a5fc0 9:950d84783eac
17 17
18 18
19 import org.eclipse.swt.events.TypedEvent; 19 import org.eclipse.swt.events.TypedEvent;
20 import org.eclipse.swt.widgets.Widget; 20 import org.eclipse.swt.widgets.Widget;
21 21
22 import tango.util.Convert;
23 22
24 /** 23 /**
25 * This event is sent when an event is generated in the CTabFolder. 24 * This event is sent when an event is generated in the CTabFolder.
26 * 25 *
27 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> 26 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
86 * @return a string representation of the event 85 * @return a string representation of the event
87 */ 86 */
88 public override String toString() { 87 public override String toString() {
89 String string = super.toString (); 88 String string = super.toString ();
90 return string[0.. $ - 1] // remove trailing '}' 89 return string[0.. $ - 1] // remove trailing '}'
91 ~ " item=" ~ to!(String)(item) 90 ~ " item=" ~ String_valueOf(item)
92 ~ " doit=" ~ to!(String)(doit) 91 ~ " doit=" ~ String_valueOf(doit)
93 ~ " x=" ~ to!(String)(x) 92 ~ " x=" ~ String_valueOf(x)
94 ~ " y=" ~ to!(String)(y) 93 ~ " y=" ~ String_valueOf(y)
95 ~ " width=" ~ to!(String)(width) 94 ~ " width=" ~ String_valueOf(width)
96 ~ " height=" ~ to!(String)(height) 95 ~ " height=" ~ String_valueOf(height)
97 ~ "}"; 96 ~ "}";
98 } 97 }
99 } 98 }