mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 14:19:28 +02:00
* SameText
This commit is contained in:
parent
9cbc8f67f0
commit
293ddd6eb4
@ -877,7 +877,7 @@ function TRttiExpUnicodeStringNodeItem.Evaluate(
|
||||
begin
|
||||
case Operation of
|
||||
sfoEqualCaseSensitive : Result := ( GetUnicodeStrProp(AInstance,PropInfo) = ComparedValue );
|
||||
sfoEqualCaseInsensitive : Result := ( LowerCase(GetUnicodeStrProp(AInstance,PropInfo)) = LowerCase(ComparedValue));
|
||||
sfoEqualCaseInsensitive : Result := SameText(GetUnicodeStrProp(AInstance,PropInfo),ComparedValue);
|
||||
sfoNotEqual : Result := not SameText(GetUnicodeStrProp(AInstance,PropInfo),ComparedValue);
|
||||
else
|
||||
Assert(False);
|
||||
|
Loading…
Reference in New Issue
Block a user