[Libreoffice-commits] .: sd/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Mon Sep 24 03:34:54 PDT 2012
sd/source/ui/dlg/RemoteDialogClientBox.cxx | 194 -----------------------------
1 file changed, 194 deletions(-)
New commits:
commit 56cb4b705e63addcc550d53a6f70c1c871d47472
Author: Olivier Hallot <olivier.hallot at alta.org.br>
Date: Sun Sep 23 18:18:38 2012 -0300
Remove unused code
According to unusedcode.easy
Change-Id: I31edd26d8ee7934b47ed7bf5ec6c07e1b8c5c5e9
Reviewed-on: https://gerrit.libreoffice.org/682
Reviewed-by: Noel Power <noel.power at suse.com>
Tested-by: Noel Power <noel.power at suse.com>
diff --git a/sd/source/ui/dlg/RemoteDialogClientBox.cxx b/sd/source/ui/dlg/RemoteDialogClientBox.cxx
index c809ecb..05b1432 100644
--- a/sd/source/ui/dlg/RemoteDialogClientBox.cxx
+++ b/sd/source/ui/dlg/RemoteDialogClientBox.cxx
@@ -146,17 +146,6 @@ ClientBox::~ClientBox()
m_xRemoveListener.clear();
}
-
-//------------------------------------------------------------------------------
-void ClientBox::checkIndex( sal_Int32 nIndex ) const
-{
- if ( nIndex < 0 )
- throw lang::IllegalArgumentException( "The list index starts with 0",0, 0 );
- if ( static_cast< sal_uInt32 >( nIndex ) >= m_vEntries.size())
- throw lang::IllegalArgumentException( "There is no element at the provided position."
- "The position exceeds the number of available list entries",0, 0 );
-}
-
//------------------------------------------------------------------------------
// Title + description
void ClientBox::CalcActiveHeight( const long nPos )
@@ -191,12 +180,6 @@ void ClientBox::CalcActiveHeight( const long nPos )
}
//------------------------------------------------------------------------------
-const Size ClientBox::GetMinOutputSizePixel() const
-{
- return Size( 200, 80 );
-}
-
-//------------------------------------------------------------------------------
Rectangle ClientBox::GetEntryRect( const long nPos ) const
{
const ::osl::MutexGuard aGuard( m_entriesMutex );
@@ -719,183 +702,6 @@ long ClientBox::addEntry( ClientInfo* pClientInfo )
return nPos;
}
-//------------------------------------------------------------------------------
-void ClientBox::updateEntry( const ClientInfo* pClientInfo )
-{
- (void) pClientInfo;
-// typedef std::vector< TClientBoxEntry >::iterator ITER;
-// for ( ITER iIndex = m_vEntries.begin(); iIndex < m_vEntries.end(); ++iIndex )
-// {
-// if ( (*iIndex)->m_xPackage == xPackage )
-// {
-// PackageState eState = m_pManager->getPackageState( xPackage );
-// (*iIndex)->m_bHasOptions = m_pManager->supportsOptions( xPackage );
-// (*iIndex)->m_eState = eState;
-// (*iIndex)->m_sTitle = xPackage->getDisplayName();
-// (*iIndex)->m_sVersion = xPackage->getVersion();
-// (*iIndex)->m_sDescription = xPackage->getDescription();
-//
-// if ( eState == REGISTERED )
-// (*iIndex)->m_bMissingLic = false;
-//
-// if ( eState == AMBIGUOUS )
-// (*iIndex)->m_sErrorText = DialogHelper::getResourceString( RID_STR_ERROR_UNKNOWN_STATUS );
-// else if ( ! (*iIndex)->m_bMissingLic )
-// (*iIndex)->m_sErrorText = String();
-//
-// if ( IsReallyVisible() )
-// Invalidate();
-// break;
-// }
-// }
-}
-
-//------------------------------------------------------------------------------
-void ClientBox::removeEntry( const ClientInfo* pClientInfo )
-{
- (void) pClientInfo;
-// if ( ! m_bInDelete )
-// {
-// ::osl::ClearableMutexGuard aGuard( m_entriesMutex );
-//
-// typedef std::vector< TClientBoxEntry >::iterator ITER;
-//
-// for ( ITER iIndex = m_vEntries.begin(); iIndex < m_vEntries.end(); ++iIndex )
-// {
-// if ( (*iIndex)->m_xPackage == xPackage )
-// {
-// long nPos = iIndex - m_vEntries.begin();
-//
-// // Entries mustn't removed here, because they contain a hyperlink control
-// // which can only be deleted when the thread has the solar mutex. Therefor
-// // the entry will be moved into the m_vRemovedEntries list which will be
-// // cleared on the next paint event
-// m_vRemovedEntries.push_back( *iIndex );
-// m_vEntries.erase( iIndex );
-//
-// m_bNeedsRecalc = true;
-//
-// if ( IsReallyVisible() )
-// Invalidate();
-//
-// if ( m_bHasActive )
-// {
-// if ( nPos < m_nActive )
-// m_nActive -= 1;
-// else if ( ( nPos == m_nActive ) &&
-// ( nPos == (long) m_vEntries.size() ) )
-// m_nActive -= 1;
-//
-// m_bHasActive = false;
-// //clear before calling out of this method
-// aGuard.clear();
-// selectEntry( m_nActive );
-// }
-// break;
-// }
-// }
-// }
-}
-
-//------------------------------------------------------------------------------
-void ClientBox::RemoveUnlocked()
-{
-// bool bAllRemoved = false;
-//
-// while ( ! bAllRemoved )
-// {
-// bAllRemoved = true;
-//
-// ::osl::ClearableMutexGuard aGuard( m_entriesMutex );
-//
-// typedef std::vector< TClientBoxEntry >::iterator ITER;
-//
-// for ( ITER iIndex = m_vEntries.begin(); iIndex < m_vEntries.end(); ++iIndex )
-// {
-// if ( !(*iIndex)->m_bLocked )
-// {
-// bAllRemoved = false;
-// uno::Reference< deployment::XPackage> xPackage = (*iIndex)->m_xPackage;
-// aGuard.clear();
-// removeEntry( xPackage );
-// break;
-// }
-// }
-// }
-}
-
-//------------------------------------------------------------------------------
-void ClientBox::prepareChecking()
-{
- m_bInCheckMode = true;
- typedef std::vector< TClientBoxEntry >::iterator ITER;
- for ( ITER iIndex = m_vEntries.begin(); iIndex < m_vEntries.end(); ++iIndex )
- {
-// (*iIndex)->m_bChecked = false;
-// (*iIndex)->m_bNew = false;
- }
-}
-
-//------------------------------------------------------------------------------
-void ClientBox::checkEntries()
-{
- long nNewPos = -1;
-// long nPos = 0;
- bool bNeedsUpdate = false;
-
- ::osl::ClearableMutexGuard guard(m_entriesMutex);
- typedef std::vector< TClientBoxEntry >::iterator ITER;
- ITER iIndex = m_vEntries.begin();
- while ( iIndex < m_vEntries.end() )
- {
-// if ( (*iIndex)->m_bChecked == false )
-// {
-// (*iIndex)->m_bChecked = true;
-// bNeedsUpdate = true;
-// nPos = iIndex-m_vEntries.begin();
-// if ( (*iIndex)->m_bNew )
-// { // add entry to list and correct active pos
-// if ( nNewPos == - 1)
-// nNewPos = nPos;
-// if ( nPos <= m_nActive )
-// m_nActive += 1;
-// ++iIndex;
-// }
-// else
-// { // remove entry from list
-// if ( nPos < m_nActive )
-// m_nActive -= 1;
-// else if ( ( nPos == m_nActive ) && ( nPos == (long) m_vEntries.size() - 1 ) )
-// m_nActive -= 1;
-// m_vRemovedEntries.push_back( *iIndex );
-// m_vEntries.erase( iIndex );
-// iIndex = m_vEntries.begin() + nPos;
-// }
-// }
-// else
- ++iIndex;
- }
- guard.clear();
-
- m_bInCheckMode = false;
-
- if ( nNewPos != - 1)
- selectEntry( nNewPos );
-
- if ( bNeedsUpdate )
- {
- m_bNeedsRecalc = true;
- if ( IsReallyVisible() )
- Invalidate();
- }
-}
-
-//------------------------------------------------------------------------------
-void ClientBox::SetScrollHdl( const Link& rLink )
-{
- m_pScrollBar->SetScrollHdl( rLink );
-}
-
// -----------------------------------------------------------------------
void ClientBox::DoScroll( long nDelta )
{
More information about the Libreoffice-commits
mailing list