mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-03 14:22:29 +01:00
40 lines
958 B
ObjectPascal
40 lines
958 B
ObjectPascal
{ $Id$ }
|
|
{
|
|
/***************************************************************************
|
|
allunits.pp
|
|
|
|
dummy unit to compile all units
|
|
|
|
/***************************************************************************
|
|
}
|
|
unit allunits;
|
|
{$mode objfpc}
|
|
interface
|
|
uses
|
|
synedit, syneditautocomplete, synedithighlighter, syneditkeycmds,
|
|
syneditmiscclasses, syneditmiscprocs, syneditsearch, syneditstrconst,
|
|
synedittextbuffer, synedittypes, synhighlighterpas, syntextdrawer,syncompletion;
|
|
|
|
implementation
|
|
end.
|
|
|
|
{ =============================================================================
|
|
|
|
$Log$
|
|
Revision 1.3 2001/02/01 19:34:50 lazarus
|
|
TScrollbar created and a lot of code added.
|
|
|
|
It's cose to working.
|
|
Shane
|
|
|
|
Revision 1.2 2001/01/30 22:55:00 lazarus
|
|
MWE:
|
|
+ Added $mode objfpc directive
|
|
|
|
Revision 1.1 2001/01/28 16:16:11 lazarus
|
|
MWE:
|
|
+ Added synedit to the components
|
|
|
|
|
|
}
|