Kaydet (Commit) 2a680739 authored tarafından Caolán McNamara's avatar Caolán McNamara

AddListenerLink/RemoveListenerLink not implemented

so the underlying stuff isn't used either, i.e. aList is always empty

Change-Id: Ia273576956294f878a81c7fab17446b7f33c5fa2
üst 321fec4e
...@@ -56,9 +56,6 @@ class SVT_DLLPUBLIC SvtToolPanelOptions: public utl::detail::Options ...@@ -56,9 +56,6 @@ class SVT_DLLPUBLIC SvtToolPanelOptions: public utl::detail::Options
SvtToolPanelOptions(); SvtToolPanelOptions();
virtual ~SvtToolPanelOptions(); virtual ~SvtToolPanelOptions();
void AddListenerLink( const Link& rLink );
void RemoveListenerLink( const Link& rLink );
bool GetVisibleImpressView() const; bool GetVisibleImpressView() const;
void SetVisibleImpressView( bool bVisible ); void SetVisibleImpressView( bool bVisible );
bool GetVisibleOutlineView() const; bool GetVisibleOutlineView() const;
......
...@@ -58,7 +58,6 @@ using namespace ::com::sun::star; ...@@ -58,7 +58,6 @@ using namespace ::com::sun::star;
class SvtToolPanelOptions_Impl : public ConfigItem class SvtToolPanelOptions_Impl : public ConfigItem
{ {
private: private:
::std::list<Link> aList;
Sequence< OUString > m_seqPropertyNames; Sequence< OUString > m_seqPropertyNames;
public: public:
...@@ -99,8 +98,6 @@ class SvtToolPanelOptions_Impl : public ConfigItem ...@@ -99,8 +98,6 @@ class SvtToolPanelOptions_Impl : public ConfigItem
bool m_bVisibleHandoutView; bool m_bVisibleHandoutView;
bool m_bVisibleSlideSorterView; bool m_bVisibleSlideSorterView;
void CallListeners();
private: private:
/** return list of key names of our configuration management which represent oue module tree /** return list of key names of our configuration management which represent oue module tree
...@@ -249,16 +246,9 @@ void SvtToolPanelOptions_Impl::Load( const Sequence< OUString >& rPropertyNames ...@@ -249,16 +246,9 @@ void SvtToolPanelOptions_Impl::Load( const Sequence< OUString >& rPropertyNames
} }
} }
void SvtToolPanelOptions_Impl::CallListeners()
{
for ( ::std::list<Link>::const_iterator iter = aList.begin(); iter != aList.end(); ++iter )
iter->Call( this );
}
void SvtToolPanelOptions_Impl::Notify( const Sequence< OUString >& rPropertyNames ) void SvtToolPanelOptions_Impl::Notify( const Sequence< OUString >& rPropertyNames )
{ {
Load( rPropertyNames ); Load( rPropertyNames );
CallListeners();
} }
void SvtToolPanelOptions_Impl::Commit() void SvtToolPanelOptions_Impl::Commit()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment