diff dwt/custom/TableTreeItem.d @ 315:349b8c12e243

Sync dwt/custom with dwt-linux
author Frank Benoit <benoit@tionex.de>
date Tue, 07 Oct 2008 16:18:26 +0200
parents fd9c62a2998e
children
line wrap: on
line diff
--- a/dwt/custom/TableTreeItem.d	Tue Oct 07 14:44:44 2008 +0200
+++ b/dwt/custom/TableTreeItem.d	Tue Oct 07 16:18:26 2008 +0200
@@ -826,7 +826,7 @@
  */
 public void setText(int index, String text) {
     checkWidget();
-    // DWT extension: allow null string
+    // DWT extension: allow null for zero length string
     //if (text is null) DWT.error (DWT.ERROR_NULL_ARGUMENT);
     int columnCount = Math.max(parent.getTable().getColumnCount(), 1);
     if (index < 0 || index >= columnCount) return;