Browse Source

* Use UnicodeString instead of Widestring, faster on windows (bug ID 29711)

git-svn-id: trunk@34502 -
michael 9 years ago
parent
commit
47407a9c29
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/regexpr/src/regexpr.pas

+ 1 - 1
packages/regexpr/src/regexpr.pas

@@ -122,7 +122,7 @@ uses
 type
 type
  {$IFDEF UniCode}
  {$IFDEF UniCode}
  PRegExprChar = PWideChar;
  PRegExprChar = PWideChar;
- RegExprString = WideString;
+ RegExprString = UnicodeString;
  REChar = WideChar;
  REChar = WideChar;
  {$ELSE}
  {$ELSE}
  PRegExprChar = PChar;
  PRegExprChar = PChar;