mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-01 23:00:27 +02:00
implemented global and user package links
git-svn-id: trunk@3407 -
This commit is contained in:
parent
c0601d90c6
commit
dbc4754166
@ -135,6 +135,14 @@ procedure RaiseException(const Msg: string);
|
||||
procedure FreeThenNil(var Obj: TObject);
|
||||
function CompareCaret(const FirstCaret, SecondCaret: TPoint): integer;
|
||||
|
||||
const
|
||||
{$IFDEF Win32}
|
||||
FindMask = '*.*';
|
||||
{$ELSE}
|
||||
FindMask = '*';
|
||||
{$ENDIF}
|
||||
|
||||
|
||||
implementation
|
||||
|
||||
|
||||
@ -149,13 +157,6 @@ uses
|
||||
{$ENDIF}
|
||||
{$EndIf};
|
||||
|
||||
const
|
||||
{$IFDEF Win32}
|
||||
FindMask = '*.*';
|
||||
{$ELSE}
|
||||
FindMask = '*';
|
||||
{$ENDIF}
|
||||
|
||||
function AddToRecentList(const s: string; RecentList: TStringList;
|
||||
Max: integer): boolean;
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user