diff options
author | Pascal Junck <pjunck@openoffice.org> | 2004-10-22 11:12:33 +0000 |
---|---|---|
committer | Pascal Junck <pjunck@openoffice.org> | 2004-10-22 11:12:33 +0000 |
commit | 4bac9f7566845d01466aa03991897f0f099140a1 (patch) | |
tree | 5b3e45eaf4e1c71e35b8635cb55e99ef07c5894a /vcl/source/control/combobox.cxx | |
parent | 816c32004b58bb4420032b8143c39e48dda5503a (diff) |
INTEGRATION: CWS dba17 (1.32.70); FILE MERGED
2004/09/20 14:50:31 fs 1.32.70.2: RESYNC: (1.32-1.33); FILE MERGED
2004/09/08 13:18:54 fs 1.32.70.1: #i33728# (approved by ssa) ImplCallEventListeners
Diffstat (limited to 'vcl/source/control/combobox.cxx')
-rw-r--r-- | vcl/source/control/combobox.cxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx index efd811e93a4f..23778b8824f0 100644 --- a/vcl/source/control/combobox.cxx +++ b/vcl/source/control/combobox.cxx @@ -2,9 +2,9 @@ * * $RCSfile: combobox.cxx,v $ * - * $Revision: 1.33 $ + * $Revision: 1.34 $ * - * last change: $Author: hr $ $Date: 2004-09-08 17:47:00 $ + * last change: $Author: pjunck $ $Date: 2004-10-22 12:12:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -569,16 +569,14 @@ void ComboBox::ToggleDropDown() void ComboBox::Select() { - ImplCallEventListeners( VCLEVENT_COMBOBOX_SELECT ); - maSelectHdl.Call( this ); + ImplCallEventListenersAndHandler( VCLEVENT_COMBOBOX_SELECT, maSelectHdl, this ); } // ----------------------------------------------------------------------- void ComboBox::DoubleClick() { - ImplCallEventListeners( VCLEVENT_COMBOBOX_DOUBLECLICK ); - maDoubleClickHdl.Call( this ); + ImplCallEventListenersAndHandler( VCLEVENT_COMBOBOX_DOUBLECLICK, maDoubleClickHdl, this ); } // ----------------------------------------------------------------------- |