mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 20:09:10 +02:00
Qt: formatting, added some todos
git-svn-id: trunk@33039 -
This commit is contained in:
parent
43ff01a261
commit
1923bcff9e
@ -3161,8 +3161,16 @@ begin
|
||||
Brush
|
||||
------------------------------------------------------------------------------}
|
||||
else
|
||||
if aObject is TQtRegion then
|
||||
begin
|
||||
{TODO: implement Region}
|
||||
{$ifdef VerboseQtWinAPI}
|
||||
ObjType := 'Region';
|
||||
{$endif}
|
||||
end else
|
||||
if aObject is TQtBrush then
|
||||
begin
|
||||
{TODO: implement Brush}
|
||||
{$ifdef VerboseQtWinAPI}
|
||||
ObjType := 'Brush';
|
||||
{$endif}
|
||||
@ -6391,8 +6399,12 @@ begin
|
||||
{$ifdef VerboseQtWinAPI}
|
||||
WriteLn('[WinAPI UpdateWindow]');
|
||||
{$endif}
|
||||
TQtWidget(Handle).Update;
|
||||
Result := True;
|
||||
Result := False;
|
||||
if Handle <> 0 then
|
||||
begin
|
||||
TQtWidget(Handle).Update;
|
||||
Result := True;
|
||||
end;
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user