projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5bd24f7
)
Fixed missing usage of x during Layout.
author
Włodzimierz Skiba
<abx@abx.art.pl>
Fri, 24 Mar 2006 07:19:45 +0000
(07:19 +0000)
committer
Włodzimierz Skiba
<abx@abx.art.pl>
Fri, 24 Mar 2006 07:19:45 +0000
(07:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38327
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/generic/vscroll.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/generic/vscroll.cpp
b/src/generic/vscroll.cpp
index d3eb9a3e5f491d45167efd0a4640de03637d61b3..cee98cef45b63d912ef3c8854184094b9835c6d5 100644
(file)
--- a/
src/generic/vscroll.cpp
+++ b/
src/generic/vscroll.cpp
@@
-997,7
+997,7
@@
bool wxHVScrolledWindow::Layout()
y = -GetRowsHeight(0, GetVisibleRowsBegin());
x = -GetColumnsWidth(0, GetVisibleColumnsBegin());
GetVirtualSize(&w, &h);
- GetSizer()->SetDimension(
0
, y, w, h);
+ GetSizer()->SetDimension(
x
, y, w, h);
return true;
}