lazutils: TFileStreamUTF8: fixed string type

git-svn-id: branches/fixes_1_4@48074 -
This commit is contained in:
mattias 2015-03-01 12:49:14 +00:00
parent be07f46999
commit 4c5b2aec34

View File

@ -13,12 +13,12 @@ type
TFileStreamUTF8 = class(TFileStream)
private
FFileName: utf8string;
FFileName: string;
public
constructor Create(const AFileName: string; Mode: Word);
constructor Create(const AFileName: string; Mode: Word; Rights: Cardinal);
destructor Destroy; override;
property FileName: utf8string Read FFilename;
property FileName: string Read FFilename;
end;
{ TStringListUTF8 }