mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 19:19:18 +02:00
lazutils: TFileStreamUTF8: fixed string type
git-svn-id: trunk@48070 -
This commit is contained in:
parent
e942ff6cf6
commit
f6788eb5b9
@ -15,8 +15,8 @@ type
|
|||||||
private
|
private
|
||||||
FFileName: utf8string;
|
FFileName: utf8string;
|
||||||
public
|
public
|
||||||
constructor Create(const AFileName: utf8string; Mode: Word);
|
constructor Create(const AFileName: string; Mode: Word);
|
||||||
constructor Create(const AFileName: utf8string; Mode: Word; Rights: Cardinal);
|
constructor Create(const AFileName: string; Mode: Word; Rights: Cardinal);
|
||||||
destructor Destroy; override;
|
destructor Destroy; override;
|
||||||
property FileName: utf8string Read FFilename;
|
property FileName: utf8string Read FFilename;
|
||||||
end;
|
end;
|
||||||
@ -117,12 +117,12 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
constructor TFileStreamUTF8.Create(const AFileName: utf8string; Mode: Word);
|
constructor TFileStreamUTF8.Create(const AFileName: string; Mode: Word);
|
||||||
begin
|
begin
|
||||||
Create(AFileName,Mode,438);
|
Create(AFileName,Mode,438);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
constructor TFileStreamUTF8.Create(const AFileName: utf8string; Mode: Word; Rights: Cardinal);
|
constructor TFileStreamUTF8.Create(const AFileName: string; Mode: Word; Rights: Cardinal);
|
||||||
var
|
var
|
||||||
lHandle: THandle;
|
lHandle: THandle;
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user