Hi All,
I have a component like this:
TMyComponent=class(TPersistent)
private
FPicture:TPicture;
public
constructor Create;
published
property Picture:TPicture read FPicture write FPicture;
end;
constructor TMyComponent.Create;
begin
inherited;
FPicture:=TPicture.Create;
end;
When click on the Picture property in OI the "Load Image Dialog" showed
then click on Load button and got SIGSEGV. Where is the source of the
problem?
Gabor
--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus-ide.org/listinfo/lazarus