diff options
author | Pascal Junck <pjunck@openoffice.org> | 2004-10-22 11:13:52 +0000 |
---|---|---|
committer | Pascal Junck <pjunck@openoffice.org> | 2004-10-22 11:13:52 +0000 |
commit | 9ae30e638647de0da83dc25cba7d16e173d4a8b0 (patch) | |
tree | 9483157f830ac993bf14b658c699fcf3f8489c00 /vcl | |
parent | ed4c0dba18637a4ef9fddb14a29892d2b1d2d6d4 (diff) |
INTEGRATION: CWS dba17 (1.6.106); FILE MERGED
2004/09/08 13:19:13 fs 1.6.106.1: #i33728# (approved by ssa) ImplCallEventListeners
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/spinbtn.cxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/vcl/source/control/spinbtn.cxx b/vcl/source/control/spinbtn.cxx index 66473768c53d..581d5ec48a4c 100644 --- a/vcl/source/control/spinbtn.cxx +++ b/vcl/source/control/spinbtn.cxx @@ -2,9 +2,9 @@ * * $RCSfile: spinbtn.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: hr $ $Date: 2004-05-10 15:47:45 $ + * last change: $Author: pjunck $ $Date: 2004-10-22 12:13:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -158,8 +158,7 @@ void SpinButton::Up() ImplMoveFocus( TRUE ); } - ImplCallEventListeners( VCLEVENT_SPINBUTTON_UP ); - maUpHdlLink.Call( this ); + ImplCallEventListenersAndHandler( VCLEVENT_SPINBUTTON_UP, maUpHdlLink, this ); } // ----------------------------------------------------------------------- @@ -174,8 +173,7 @@ void SpinButton::Down() ImplMoveFocus( FALSE ); } - ImplCallEventListeners( VCLEVENT_SPINBUTTON_DOWN ); - maDownHdlLink.Call( this ); + ImplCallEventListenersAndHandler( VCLEVENT_SPINBUTTON_DOWN, maDownHdlLink, this ); } // ----------------------------------------------------------------------- |