diff options
author | Philipp Lohmann <pl@openoffice.org> | 2002-05-08 15:05:42 +0000 |
---|---|---|
committer | Philipp Lohmann <pl@openoffice.org> | 2002-05-08 15:05:42 +0000 |
commit | faa4d000678c37095f3af5c6908a191913b243fa (patch) | |
tree | 8e7afece40b6494ae23f7448aaf7231842ade12d /vcl/source/control/spinbtn.cxx | |
parent | e6810eded54de5c81a15217560f7e9b0565bdf45 (diff) |
#98573# discard layout information on resize
Diffstat (limited to 'vcl/source/control/spinbtn.cxx')
-rw-r--r-- | vcl/source/control/spinbtn.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/source/control/spinbtn.cxx b/vcl/source/control/spinbtn.cxx index 45b3bd98586f..55063e8b2e78 100644 --- a/vcl/source/control/spinbtn.cxx +++ b/vcl/source/control/spinbtn.cxx @@ -2,9 +2,9 @@ * * $RCSfile: spinbtn.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: mt $ $Date: 2001-11-27 09:54:45 $ + * last change: $Author: pl $ $Date: 2002-05-08 16:01:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -166,6 +166,8 @@ void SpinButton::Down() void SpinButton::Resize() { + Control::Resize(); + Size aSize( GetOutputSizePixel() ); Point aTmpPoint; Rectangle aRect( aTmpPoint, aSize ); |