diff options
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/headbar.cxx | 8 | ||||
-rw-r--r-- | svtools/source/control/valueset.cxx | 17 |
2 files changed, 0 insertions, 25 deletions
diff --git a/svtools/source/control/headbar.cxx b/svtools/source/control/headbar.cxx index 2782d82b1663..eda70d234a0a 100644 --- a/svtools/source/control/headbar.cxx +++ b/svtools/source/control/headbar.cxx @@ -111,14 +111,6 @@ HeaderBar::HeaderBar( Window* pParent, WinBits nWinStyle ) : // ----------------------------------------------------------------------- -HeaderBar::HeaderBar( Window* pParent, const ResId& rResId ) : - Window( pParent, rResId ) -{ - ImplInit( rResId.GetWinBits() ); -} - -// ----------------------------------------------------------------------- - HeaderBar::~HeaderBar() { // Alle Items loeschen diff --git a/svtools/source/control/valueset.cxx b/svtools/source/control/valueset.cxx index a757d2f28e9c..c4487aab253f 100644 --- a/svtools/source/control/valueset.cxx +++ b/svtools/source/control/valueset.cxx @@ -1122,23 +1122,6 @@ sal_uInt16 ValueSet::ImplGetVisibleItemCount() const // ----------------------------------------------------------------------- -ValueSetItem* ValueSet::ImplGetVisibleItem( sal_uInt16 nVisiblePos ) -{ - const size_t nItemCount = mItemList.size(); - - for ( size_t n = 0; n < nItemCount; ++n ) - { - ValueSetItem *const pItem = mItemList[n]; - - if ( pItem->mbVisible && !nVisiblePos-- ) - return pItem; - } - - return NULL; -} - -// ----------------------------------------------------------------------- - void ValueSet::ImplFireAccessibleEvent( short nEventId, const ::com::sun::star::uno::Any& rOldValue, const ::com::sun::star::uno::Any& rNewValue ) { ValueSetAcc* pAcc = ValueSetAcc::getImplementation( GetAccessible( sal_False ) ); |