Show
Ignore:
Timestamp:
05/04/08 18:12:38 (7 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted the char[] to String and use the an alias.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/custom/TableCursor.d

    r155 r212  
    439439        x += imageSize.width; 
    440440    } 
    441     char[] text = row.getText(columnIndex); 
     441    String text = row.getText(columnIndex); 
    442442    if (text.length > 0) { 
    443443        Rectangle bounds = row.getBounds(columnIndex); 
    444444        Point extent = gc.stringExtent(text); 
    445445        // Temporary code - need a better way to determine table trim 
    446         char[] platform = DWT.getPlatform(); 
     446        String platform = DWT.getPlatform(); 
    447447        if ("win32"==platform) { //$NON-NLS-1$ 
    448448            if (table.getColumnCount() is 0 || columnIndex is 0) {