From 8ae9bafbf3561b68dc4be92296aacf9559e57abd Mon Sep 17 00:00:00 2001 From: paul Date: Sun, 4 May 2008 08:34:58 +0000 Subject: [PATCH] ide: fix imagelist editor after TBitmap->TCustomBitmap change git-svn-id: trunk@15040 - --- ideintf/imagelisteditor.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ideintf/imagelisteditor.pp b/ideintf/imagelisteditor.pp index a21917899e..c8d0a1cd5f 100644 --- a/ideintf/imagelisteditor.pp +++ b/ideintf/imagelisteditor.pp @@ -493,7 +493,7 @@ begin Picture.LoadFromFile(FileName); Bmp := TBitmap.Create; - Bmp.Assign(Picture.Bitmap); + Bmp.Assign(Picture.Graphic); finally Picture.Free; end;