mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-23 10:22:54 +02:00
fixed 1.9.9 compilation (rtlconst -> rtlconsts)
git-svn-id: trunk@6927 -
This commit is contained in:
parent
9e5168c0c5
commit
1c4a8462c7
@ -205,7 +205,12 @@ type
|
|||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
uses SysUtils, AppUtils, RTLConst;
|
uses SysUtils, AppUtils,
|
||||||
|
{$IFDEF VER1_9_8}
|
||||||
|
RTLConst;
|
||||||
|
{$ELSE}
|
||||||
|
RTLConsts;
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
const
|
const
|
||||||
{ The following strings should not be localized }
|
{ The following strings should not be localized }
|
||||||
|
@ -145,7 +145,11 @@ Procedure Register;
|
|||||||
implementation
|
implementation
|
||||||
|
|
||||||
uses
|
uses
|
||||||
|
{$IFDEF VER1_9_8}
|
||||||
RTLConst;
|
RTLConst;
|
||||||
|
{$ELSE}
|
||||||
|
RTLConsts;
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
Procedure Register;
|
Procedure Register;
|
||||||
begin
|
begin
|
||||||
|
@ -25,7 +25,8 @@ interface
|
|||||||
|
|
||||||
{$IFNDEF VER1_0}
|
{$IFNDEF VER1_0}
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, RTLConst
|
Classes, SysUtils,
|
||||||
|
{$IFDEF VER1_9_8}RTLConst{$ELSE}RTLConsts{$ENDIF}
|
||||||
{$IFDEF EnableSessionProps}, RTTIUtils{$ENDIF};
|
{$IFDEF EnableSessionProps}, RTTIUtils{$ENDIF};
|
||||||
|
|
||||||
Type
|
Type
|
||||||
|
Loading…
Reference in New Issue
Block a user