Fix: Overload "IsStrEmpty" for RawByteString and UnicodeString.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6678 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
parent
aed9ac03f5
commit
7df1df08ec
@ -50,11 +50,17 @@ Type
|
||||
end;
|
||||
|
||||
|
||||
function IsStrEmpty(Const AStr:String):Boolean;
|
||||
function IsStrEmpty(Const AStr : RawByteString):Boolean;overload;
|
||||
function IsStrEmpty(Const AStr : UnicodeString):Boolean;overload;
|
||||
|
||||
implementation
|
||||
|
||||
function IsStrEmpty(Const AStr:String):Boolean;
|
||||
function IsStrEmpty(Const AStr : RawByteString):Boolean;
|
||||
begin
|
||||
Result := ( Length(Trim(AStr)) = 0 );
|
||||
end;
|
||||
|
||||
function IsStrEmpty(Const AStr : UnicodeString):Boolean;
|
||||
begin
|
||||
Result := ( Length(Trim(AStr)) = 0 );
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user