LazUtf8: clean up unused var

git-svn-id: trunk@32869 -
This commit is contained in:
martin 2011-10-13 10:05:58 +00:00
parent 76bb7ad46b
commit 3be1e68746

View File

@ -1169,7 +1169,7 @@ function UTF8LowerCase2(const AInStr: utf8string; ALocale: utf8string =''): utf8
const
ResultSizeIncr = 10;
var
i, CounterDiff, ExtraResultBytes: PtrInt;
CounterDiff, ExtraResultBytes: PtrInt;
InStr, InStrEnd, OutStr: PChar;
// Language identification
IsTurkish: Boolean;
@ -1551,7 +1551,7 @@ end;
}
function UTF8LowerCase(const AInStr: utf8string; ALocale: utf8string=''): utf8string;
var
i, CounterDiff: PtrInt;
CounterDiff: PtrInt;
InStr, InStrEnd, OutStr: PChar;
// Language identification
IsTurkish: Boolean;