Changeset 178:e186b01aa62e

Show
Ignore:
Timestamp:
03/06/08 20:36:32 (9 months ago)
Author:
Frank Benoit <benoit@tionex.de>
Children:

179:69c0e2fa46b9 181:52c185ec49e8

branch:
default
Message:

renamed getFirstCodePoint

Files:

Legend:

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

    r155 r178  
    13051305        while (index < length_ && string[index] !is '&') index++; 
    13061306        if (++index >= length_) return '\0'; 
    1307         if (string[index] !is '&') return CharacterToLower(getFirstCodepoint( string[index..$])); 
     1307        if (string[index] !is '&') return CharacterToLower(firstCodePoint( string[index..$])); 
    13081308        index++; 
    13091309    } while (index < length_); 
  • dwt/custom/StyledText.d

    r169 r178  
    56265626        while (index < length_ && string[index] !is '&') index++; 
    56275627        if (++index >= length_) return '\0'; 
    5628         if (string[index] !is '&') return CharacterToLower(getFirstCodepoint( string[index .. $ ] )); 
     5628        if (string[index] !is '&') return CharacterToLower(firstCodePoint( string[index .. $ ] )); 
    56295629        index++; 
    56305630    } while (index < length_);