diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-15 13:04:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-16 08:38:54 +0200 |
commit | ffb4d56c20b6866e5d0a732ba74b5cd3aace0770 (patch) | |
tree | 3a290896abb9857bf77d818df979b0b2ec8904f0 /svtools | |
parent | 192bd9054a97de3aed0c8f8a385b1d4a865c36ba (diff) |
remove unused Link field
Change-Id: If79a5031d60bd88fa8a3ad4d0ab1664c18f46a67
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/table/tablecontrol.cxx | 2 | ||||
-rw-r--r-- | svtools/source/table/tablecontrol_impl.hxx | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/svtools/source/table/tablecontrol.cxx b/svtools/source/table/tablecontrol.cxx index 289b935e90d8..6f643dc18310 100644 --- a/svtools/source/table/tablecontrol.cxx +++ b/svtools/source/table/tablecontrol.cxx @@ -651,7 +651,7 @@ namespace svt { namespace table void TableControl::Select() { - ImplCallEventListenersAndHandler( VCLEVENT_TABLEROW_SELECT, [this] () { m_pImpl->getSelectHandler().Call(this); } ); + ImplCallEventListenersAndHandler( VCLEVENT_TABLEROW_SELECT, nullptr ); if ( m_pImpl->isAccessibleAlive() ) { diff --git a/svtools/source/table/tablecontrol_impl.hxx b/svtools/source/table/tablecontrol_impl.hxx index 6a4e1227c6c4..b589a104e679 100644 --- a/svtools/source/table/tablecontrol_impl.hxx +++ b/svtools/source/table/tablecontrol_impl.hxx @@ -134,8 +134,6 @@ namespace svt { namespace table RowPos m_nAnchor; bool m_bUpdatingColWidths; - Link<> m_aSelectHdl; - AccessibleFactoryAccess m_aFactoryAccess; IAccessibleTableControl* m_pAccessibleTable; @@ -246,8 +244,6 @@ namespace svt { namespace table */ bool markAllRowsAsSelected(); - Link<> const& getSelectHandler() const { return m_aSelectHdl; } - void commitAccessibleEvent( sal_Int16 const i_eventID, const com::sun::star::uno::Any& i_newValue, const com::sun::star::uno::Any& i_oldValue ); void commitCellEvent( sal_Int16 const i_eventID, const com::sun::star::uno::Any& i_newValue, const com::sun::star::uno::Any& i_oldValue ); void commitTableEvent( sal_Int16 const i_eventID, const com::sun::star::uno::Any& i_newValue, const com::sun::star::uno::Any& i_oldValue ); |