mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 05:58:06 +02:00
LCL: added hint when miscompiled with nogui
git-svn-id: trunk@28710 -
This commit is contained in:
parent
e3ea34bc78
commit
500cf06dda
@ -7263,8 +7263,12 @@ begin
|
||||
|
||||
//DebugLn(['TWinControl.CreateWnd Creating handle ... ',DbgSName(WidgetSetClass),' ',DbgSName(Self)]);
|
||||
FHandle := TWSWinControlClass(WidgetSetClass).CreateHandle(Self, Params);
|
||||
if not HandleAllocated then
|
||||
RaiseGDBException('Handle creation failed creating '+DbgSName(Self));
|
||||
if not HandleAllocated then begin
|
||||
if WidgetSet.LCLPlatform=lpNoGUI then
|
||||
RaiseGDBException('TWinControl.CreateWnd: The nogui widgetset does not support visual controls.')
|
||||
else
|
||||
RaiseGDBException('TWinControl.CreateWnd: Handle creation failed creating '+DbgSName(Self));
|
||||
end;
|
||||
//debugln('TWinControl.CreateWnd update constraints ... ',DbgSName(Self));
|
||||
TWSWinControlClass(WidgetSetClass).SetBiDiMode(Self,
|
||||
UseRightToLeftAlignment, UseRightToLeftReading, UseRightToLeftScrollBar);
|
||||
|
Loading…
Reference in New Issue
Block a user