Qt5, Qt6: stop warnings about uninitialized paint engine. issue #41304

This commit is contained in:
zeljan1 2025-01-03 13:59:44 +01:00
parent bfd5b97aab
commit 619d76cdb7
2 changed files with 6 additions and 0 deletions

View File

@ -436,6 +436,9 @@ begin
if not WSCheckHandleAllocated(AWincontrol, 'PaintTo') or (ADC = 0) then
Exit;
if not AWinControl.Visible or not TQtWidget(AWinControl.Handle).getVisible then
exit;
Widget := TQtWidget(AWinControl.Handle);
ARect := Widget.getFrameGeometry;

View File

@ -434,6 +434,9 @@ begin
if not WSCheckHandleAllocated(AWincontrol, 'PaintTo') or (ADC = 0) then
Exit;
if not AWinControl.Visible or not TQtWidget(AWinControl.Handle).getVisible then
exit;
Widget := TQtWidget(AWinControl.Handle);
ARect := Widget.getFrameGeometry;