diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-09-05 00:17:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-09-05 10:54:21 +0100 |
commit | 04ce2cea24b7e90de6542789dfdcf894082fad70 (patch) | |
tree | ade6f571585e3978dfa57a558d3cabcdf4ffa942 /unotools | |
parent | f8238e893b94901a6b1b2e08fd45be1a15726996 (diff) |
callcatcher: drop some Impl methods, regenerate list
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/inc/unotools/eventcfg.hxx | 1 | ||||
-rw-r--r-- | unotools/source/config/eventcfg.cxx | 14 |
2 files changed, 0 insertions, 15 deletions
diff --git a/unotools/inc/unotools/eventcfg.hxx b/unotools/inc/unotools/eventcfg.hxx index 253aaba9963f..1e01ac0c0247 100644 --- a/unotools/inc/unotools/eventcfg.hxx +++ b/unotools/inc/unotools/eventcfg.hxx @@ -83,7 +83,6 @@ public: GlobalEventConfig_Impl( ); ~GlobalEventConfig_Impl( ); - void EstablishFrameCallback(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame); void Notify( const com::sun::star::uno::Sequence<rtl::OUString>& aPropertyNames); void Commit(); diff --git a/unotools/source/config/eventcfg.cxx b/unotools/source/config/eventcfg.cxx index 4e7aec4d7342..007b244bdb80 100644 --- a/unotools/source/config/eventcfg.cxx +++ b/unotools/source/config/eventcfg.cxx @@ -205,20 +205,6 @@ void GlobalEventConfig_Impl::Commit() } //***************************************************************************************************************** -// public method -//***************************************************************************************************************** -void GlobalEventConfig_Impl::EstablishFrameCallback(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame) -{ - // check if frame already exists inside list - // ignore double registrations - // every frame must be notified one times only! - ::com::sun::star::uno::WeakReference< ::com::sun::star::frame::XFrame > xWeak(xFrame); - FrameVector::const_iterator pIt = ::std::find(m_lFrames.begin(), m_lFrames.end(), xWeak); - if (pIt == m_lFrames.end()) - m_lFrames.push_back(xWeak); -} - -//***************************************************************************************************************** // private method //***************************************************************************************************************** void GlobalEventConfig_Impl::initBindingInfo() |