- fix compilation

git-svn-id: trunk@11347 -
This commit is contained in:
paul 2007-06-21 08:35:24 +00:00
parent 2faaf28d30
commit 1fdde5344b
2 changed files with 7 additions and 7 deletions

View File

@ -189,9 +189,9 @@ begin
ILElements:=TImageList.Create(Self); ILElements:=TImageList.Create(Self);
ILElements.Height:=22; ILElements.Height:=22;
ILElements.Width:=22; ILElements.Width:=22;
ILElements.AddFromLazarusResource('Insert_16N'); ILElements.AddLazarusResource('Insert_16N');
ILElements.AddFromLazarusResource('Edit_16N'); ILElements.AddLazarusResource('Edit_16N');
ILElements.AddFromLazarusResource('Delete_16N'); ILElements.AddLazarusResource('Delete_16N');
P0:=TPanel.Create(Self); P0:=TPanel.Create(Self);
With P0 do With P0 do
begin begin

View File

@ -270,10 +270,10 @@ Constructor TPackageEditor.Create(AOwner : TComponent);
begin begin
Inherited; Inherited;
FImageList := TImageList.Create(Self); FImageList := TImageList.Create(Self);
Fimagelist.AddFromLazarusResource('node_new'); // ImgIndxNew Fimagelist.AddLazarusResource('node_new'); // ImgIndxNew
Fimagelist.AddFromLazarusResource('node_edit'); // ImgIndxEdited Fimagelist.AddLazarusResource('node_edit'); // ImgIndxEdited
Fimagelist.AddFromLazarusResource('node_modified'); // ImgIndxModified Fimagelist.AddLazarusResource('node_modified'); // ImgIndxModified
Fimagelist.AddFromLazarusResource('node_finished'); // ImgIndxFinished Fimagelist.AddLazarusResource('node_finished'); // ImgIndxFinished
FLModules:=Tlabel.Create(Self); FLModules:=Tlabel.Create(Self);
With FLModules do With FLModules do