mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-03 12:40:21 +02:00
Qt: fixed bug in TQtWidgetSet.ScrollWindowEx().Wrong argument passed to TQtWidget.scroll()
git-svn-id: trunk@26509 -
This commit is contained in:
parent
ab43273cb2
commit
e1c4c31217
@ -4469,7 +4469,7 @@ begin
|
||||
if ((Flags and SW_SCROLLCHILDREN) <> 0) or (PRcScroll = nil) then
|
||||
W.scroll(dx, dy, nil)
|
||||
else
|
||||
W.scroll(dx, dy, @PRcScroll);
|
||||
W.scroll(dx, dy, PRcScroll);
|
||||
|
||||
if ((Flags and SW_INVALIDATE) <> 0) then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user