mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-27 10:00:40 +02:00
MG: added error message, when lcl founds no widget interface object
git-svn-id: trunk@631 -
This commit is contained in:
parent
5150c46979
commit
800dd8c2b9
@ -173,6 +173,11 @@ end;
|
|||||||
{------------------------------------------------------------------------------}
|
{------------------------------------------------------------------------------}
|
||||||
procedure TApplication.Initialize;
|
procedure TApplication.Initialize;
|
||||||
begin
|
begin
|
||||||
|
if InterfaceObject=nil then begin
|
||||||
|
writeln('ERROR: no widget interface object. Did u compile an abstract LCL?');
|
||||||
|
raise Exception.Create(
|
||||||
|
'No widget interface object. Did u compile an abstract LCL?');
|
||||||
|
end;
|
||||||
InterfaceObject.Init;
|
InterfaceObject.Init;
|
||||||
CNSendMessage(LM_SCREENINIT, nil, @ScreenInfo);
|
CNSendMessage(LM_SCREENINIT, nil, @ScreenInfo);
|
||||||
if LazarusResources.Find('MAINICON')<>nil then begin
|
if LazarusResources.Find('MAINICON')<>nil then begin
|
||||||
@ -389,6 +394,9 @@ end;
|
|||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.16 2002/01/27 23:24:37 lazarus
|
||||||
|
MG: added error message, when lcl founds no widget interface object
|
||||||
|
|
||||||
Revision 1.15 2001/12/08 12:35:12 lazarus
|
Revision 1.15 2001/12/08 12:35:12 lazarus
|
||||||
MG: added TApplication.ShowException
|
MG: added TApplication.ShowException
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user