diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-12-21 12:21:34 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-12-21 12:21:34 +0000 |
commit | 72006cdd672475a1985d405f2222d6f63a68c25a (patch) | |
tree | 4ec0f9e00a36b326cd327aa8ae14be9515f076e7 /forms | |
parent | cfabb98e7cd90841e2305ea8008b31d2e0d64452 (diff) |
INTEGRATION: CWS dba202a (1.8.30); FILE MERGED
2005/11/25 13:42:19 fs 1.8.30.1: comphelper::OReusableGuard -> osl::ResettableMutexGuard / NOTIFY_LISTENERS replaced by ListenerContainer::forEach/notifyEach
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/File.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/forms/source/component/File.cxx b/forms/source/component/File.cxx index efdb5f9c2..b3a52567e 100644 --- a/forms/source/component/File.cxx +++ b/forms/source/component/File.cxx @@ -4,9 +4,9 @@ * * $RCSfile: File.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-09-08 22:38:50 $ + * last change: $Author: obo $ $Date: 2005-12-21 13:21:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -56,6 +56,9 @@ #ifndef _COMPHELPER_BASIC_IO_HXX_ #include <comphelper/basicio.hxx> #endif +#ifndef _COMPHELPER_GUARDING_HXX_ +#include <comphelper/guarding.hxx> +#endif //......................................................................... namespace frm @@ -291,7 +294,7 @@ void SAL_CALL OFileControlModel::reset() throw ( ::com::sun::star::uno::RuntimeE ::osl::MutexGuard aGuard(m_aMutex); _reset(); } - NOTIFY_LISTENERS(m_aResetListeners, XResetListener, resetted, aEvt); + m_aResetListeners.notifyEach( &XResetListener::resetted, aEvt ); } } |