diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-12-21 12:22:41 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-12-21 12:22:41 +0000 |
commit | 7e341de714fbaee1feb7bdd8720a893d17719638 (patch) | |
tree | f35146efa1a475552ccad3601347d61b3f4d1601 /forms | |
parent | 0d0664d548c41b8b57ad82e4b4b9694eaedb0710 (diff) |
INTEGRATION: CWS dba202a (1.5.30); FILE MERGED
2005/11/25 13:42:22 fs 1.5.30.1: comphelper::OReusableGuard -> osl::ResettableMutexGuard / NOTIFY_LISTENERS replaced by ListenerContainer::forEach/notifyEach
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/clickableimage.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/component/clickableimage.cxx b/forms/source/component/clickableimage.cxx index 784f62d5e..61b1e16d0 100644 --- a/forms/source/component/clickableimage.cxx +++ b/forms/source/component/clickableimage.cxx @@ -4,9 +4,9 @@ * * $RCSfile: clickableimage.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-08 22:47:29 $ + * last change: $Author: obo $ $Date: 2005-12-21 13:22:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -448,7 +448,7 @@ namespace frm { // notify the action listeners for a push button ActionEvent aEvt(static_cast<XWeak*>(this), m_aActionCommand); - NOTIFY_LISTENERS(m_aActionListeners, XActionListener, actionPerformed, aEvt); + m_aActionListeners.notifyEach( &XActionListener::actionPerformed, aEvt ); } } } |