mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-05 14:18:18 +02:00
win32: don't use LCLIntf ShowWindow in win32 interface
git-svn-id: trunk@24712 -
This commit is contained in:
parent
f3ce045d4b
commit
fe58688a50
@ -504,9 +504,9 @@ end;
|
||||
procedure TWin32WidgetSet.AppSetVisible(const AVisible: Boolean);
|
||||
begin
|
||||
if AVisible then
|
||||
ShowWindow(FAppHandle, SW_SHOW)
|
||||
Windows.ShowWindow(FAppHandle, SW_SHOW)
|
||||
else
|
||||
ShowWindow(FAppHandle, SW_HIDE);
|
||||
Windows.ShowWindow(FAppHandle, SW_HIDE);
|
||||
end;
|
||||
|
||||
function TWin32WidgetSet.AppRemoveStayOnTopFlags: Boolean;
|
||||
|
Loading…
Reference in New Issue
Block a user