# HG changeset patch # User Frank Benoit # Date 1204853792 -3600 # Node ID e186b01aa62e236e3de340de7db4fc1ece2f7c6d # Parent 6bfa783ac0b4e374e1df24f7f61b18c375b9f7fd renamed getFirstCodePoint diff -r 6bfa783ac0b4 -r e186b01aa62e dwt/custom/CTabFolder.d --- a/dwt/custom/CTabFolder.d Fri Mar 07 02:24:13 2008 +0100 +++ b/dwt/custom/CTabFolder.d Fri Mar 07 02:36:32 2008 +0100 @@ -1304,7 +1304,7 @@ do { while (index < length_ && string[index] !is '&') index++; if (++index >= length_) return '\0'; - if (string[index] !is '&') return CharacterToLower(getFirstCodepoint( string[index..$])); + if (string[index] !is '&') return CharacterToLower(firstCodePoint( string[index..$])); index++; } while (index < length_); return '\0'; diff -r 6bfa783ac0b4 -r e186b01aa62e dwt/custom/StyledText.d --- a/dwt/custom/StyledText.d Fri Mar 07 02:24:13 2008 +0100 +++ b/dwt/custom/StyledText.d Fri Mar 07 02:36:32 2008 +0100 @@ -5625,7 +5625,7 @@ do { while (index < length_ && string[index] !is '&') index++; if (++index >= length_) return '\0'; - if (string[index] !is '&') return CharacterToLower(getFirstCodepoint( string[index .. $ ] )); + if (string[index] !is '&') return CharacterToLower(firstCodePoint( string[index .. $ ] )); index++; } while (index < length_); return '\0';