changeset 178:e186b01aa62e

renamed getFirstCodePoint
author Frank Benoit <benoit@tionex.de>
date Fri, 07 Mar 2008 02:36:32 +0100
parents 6bfa783ac0b4
children 69c0e2fa46b9 52c185ec49e8
files dwt/custom/CTabFolder.d dwt/custom/StyledText.d
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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';
--- 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';