mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-27 10:13:35 +02:00
* PChar -> PAnsiChar
This commit is contained in:
parent
39c29ffae2
commit
5e9c294eda
@ -155,7 +155,7 @@ end;
|
||||
procedure TTestCSSFilesParser.SetUp;
|
||||
begin
|
||||
inherited SetUp;
|
||||
With TMemIniFile.Create(ChangeFileExt(Paramstr(0),'.ini')) do
|
||||
With TMemIniFile.Create(ChangeFileExt(Paramstr(0),RTLString('.ini'))) do
|
||||
try
|
||||
TestDir:=ReadString('CSS','SourceDir','css');
|
||||
finally
|
||||
|
@ -45,6 +45,9 @@
|
||||
<OtherUnitFiles Value="../src"/>
|
||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
<Other>
|
||||
<CustomOptions Value="-tunicodertl"/>
|
||||
</Other>
|
||||
</CompilerOptions>
|
||||
<Debugging>
|
||||
<Exceptions>
|
||||
|
@ -3,6 +3,9 @@ program testcss;
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
uses
|
||||
{$IFDEF UNIX}
|
||||
cwstring,
|
||||
{$ENDIF}
|
||||
Classes, sysutils, consoletestrunner, tcCSSScanner, tcCSSParser, tcCSSTree,
|
||||
tcCSSResolver;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user