summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-18 09:36:44 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-18 10:10:01 +0000
commitd13545987a59e369f1becec5e1fbc4c69db03184 (patch)
treec8c402f59120946ef4a478f19386e29b6654f42d /svtools
parent4f7e948af4f6673b048b71228381572a5af4a8d8 (diff)
callcatcher: update unused code lists
Change-Id: Ie975f8a970eec63b593933ebb2394db76d537c51
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/control/headbar.cxx8
-rw-r--r--svtools/source/control/valueset.cxx17
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 ) );