diff options
author | Mariusz Dykierek <mariuszdykierek@gmail.com> | 2012-01-23 13:53:54 +0530 |
---|---|---|
committer | Muthu Subramanian <sumuthu@suse.com> | 2012-01-23 13:53:54 +0530 |
commit | 458c80234b701fb1cb9a71239cec532c54b2e9f0 (patch) | |
tree | 4ca5f6ff2d2c0dbfbcae95165e3a2695c2d28737 /svtools/source | |
parent | 9042c4d0740c5b222b27d189e526b74fbd740b6f (diff) |
Removed Get*EntryLine? and Get*EntryDistance methods.
Diffstat (limited to 'svtools/source')
-rw-r--r-- | svtools/source/control/ctrlbox.cxx | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/svtools/source/control/ctrlbox.cxx b/svtools/source/control/ctrlbox.cxx index d4959ecbb0ca..ce72cdcfd935 100644 --- a/svtools/source/control/ctrlbox.cxx +++ b/svtools/source/control/ctrlbox.cxx @@ -851,30 +851,6 @@ sal_uInt16 LineListBox::GetEntryPos( sal_uInt16 nStyle ) const // ----------------------------------------------------------------------- -long LineListBox::GetEntryLine1( sal_uInt16 nPos ) const -{ - ImpLineListData* pData = (nPos < pLineList->size()) ? (*pLineList)[ nPos ] : NULL; - return ( pData ) ? pData->GetLine1ForWidth( m_nWidth ) : 0; -} - -// ----------------------------------------------------------------------- - -long LineListBox::GetEntryLine2( sal_uInt16 nPos ) const -{ - ImpLineListData* pData = (nPos < pLineList->size()) ? (*pLineList)[ nPos ] : NULL; - return ( pData ) ? pData->GetLine2ForWidth( m_nWidth ) : 0; -} - -// ----------------------------------------------------------------------- - -long LineListBox::GetEntryDistance( sal_uInt16 nPos ) const -{ - ImpLineListData* pData = (nPos < pLineList->size()) ? (*pLineList)[ nPos ] : NULL; - return ( pData ) ? pData->GetDistForWidth( m_nWidth ) : 0; -} - -// ----------------------------------------------------------------------- - sal_uInt16 LineListBox::GetEntryStyle( sal_uInt16 nPos ) const { ImpLineListData* pData = (nPos < pLineList->size()) ? (*pLineList)[ nPos ] : NULL; |