Qt: formatting, added some todos

git-svn-id: trunk@33039 -
This commit is contained in:
zeljko 2011-10-23 08:30:37 +00:00
parent 43ff01a261
commit 1923bcff9e

View File

@ -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;
{------------------------------------------------------------------------------