|
@@ -846,7 +846,7 @@ function TRttiExpWideStringNodeItem.Evaluate(AInstance: TRttiFilterCreatorTarget
|
|
begin
|
|
begin
|
|
case Operation of
|
|
case Operation of
|
|
sfoEqualCaseSensitive : Result := ( GetWideStrProp(AInstance,PropInfo) = ComparedValue );
|
|
sfoEqualCaseSensitive : Result := ( GetWideStrProp(AInstance,PropInfo) = ComparedValue );
|
|
- sfoEqualCaseInsensitive : Result := ( LowerCase(GetWideStrProp(AInstance,PropInfo)) = LowerCase(ComparedValue) );
|
|
|
|
|
|
+ sfoEqualCaseInsensitive : Result := ( SameText(GetWideStrProp(AInstance,PropInfo),ComparedValue));
|
|
sfoNotEqual : Result := not SameText(GetWideStrProp(AInstance,PropInfo),ComparedValue);
|
|
sfoNotEqual : Result := not SameText(GetWideStrProp(AInstance,PropInfo),ComparedValue);
|
|
else begin
|
|
else begin
|
|
Assert(False);
|
|
Assert(False);
|