diff dwt/widgets/TrayItem.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents 43c42c637c9c
children 82b599d21983
line wrap: on
line diff
--- a/dwt/widgets/TrayItem.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/widgets/TrayItem.d	Mon May 05 00:12:38 2008 +0200
@@ -51,7 +51,7 @@
     int id;
     Image image2;
     ToolTip toolTip;
-    char[] toolTipText;
+    String toolTipText;
     bool visible = true;
 
 /**
@@ -216,7 +216,7 @@
  *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
  * </ul>
  */
-public char[] getToolTipText () {
+public String getToolTipText () {
     checkWidget ();
     return toolTipText;
 }
@@ -465,7 +465,7 @@
  *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
  * </ul>
  */
-public void setToolTipText (char[] value) {
+public void setToolTipText (String value) {
     checkWidget ();
     toolTipText = value;
     NOTIFYICONDATA iconData;