diff options
author | Malte Timmermann <mt@openoffice.org> | 2001-11-27 08:54:45 +0000 |
---|---|---|
committer | Malte Timmermann <mt@openoffice.org> | 2001-11-27 08:54:45 +0000 |
commit | 7c7e37772408008361e4e4af9865d2b5c0a2f7bf (patch) | |
tree | 1f09fca950b1f6b7d456e18de7822688295eccca /vcl/source/control/spinfld.cxx | |
parent | 273fe8eb4ef78fbbb9c3329aa4cf5da9159b4883 (diff) |
#93120# Accessiblity
Diffstat (limited to 'vcl/source/control/spinfld.cxx')
-rw-r--r-- | vcl/source/control/spinfld.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/vcl/source/control/spinfld.cxx b/vcl/source/control/spinfld.cxx index 10bd6f4361e9..3f558cc8073a 100644 --- a/vcl/source/control/spinfld.cxx +++ b/vcl/source/control/spinfld.cxx @@ -2,9 +2,9 @@ * * $RCSfile: spinfld.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: mt $ $Date: 2001-06-06 16:33:59 $ + * last change: $Author: mt $ $Date: 2001-11-27 09:54:45 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -262,6 +262,7 @@ SpinField::~SpinField() void SpinField::Up() { + ImplCallEventListeners( VCLEVENT_SPINFIELD_UP ); maUpHdlLink.Call( this ); } @@ -269,6 +270,7 @@ void SpinField::Up() void SpinField::Down() { + ImplCallEventListeners( VCLEVENT_SPINFIELD_DOWN ); maDownHdlLink.Call( this ); } @@ -276,6 +278,7 @@ void SpinField::Down() void SpinField::First() { + ImplCallEventListeners( VCLEVENT_SPINFIELD_FIRST ); maFirstHdlLink.Call( this ); } @@ -283,6 +286,7 @@ void SpinField::First() void SpinField::Last() { + ImplCallEventListeners( VCLEVENT_SPINFIELD_LAST ); maLastHdlLink.Call( this ); } |