diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-10 00:41:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-11 09:04:34 +0100 |
commit | 75b2f95bdb61fe74c240d4d20763e215adaee5d2 (patch) | |
tree | 27a59736a58d9f7edf61c3b2accf6db8e5bb97e3 | |
parent | 0742143af2bf664f57197961d9b21fb4eb9b4d42 (diff) |
callcatcher: unused lcl_Foo methods
-rw-r--r-- | editeng/source/outliner/outliner.cxx | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/editeng/source/outliner/outliner.cxx b/editeng/source/outliner/outliner.cxx index 86b93a2eef19..ce01a1f3d955 100644 --- a/editeng/source/outliner/outliner.cxx +++ b/editeng/source/outliner/outliner.cxx @@ -76,25 +76,6 @@ static const sal_uInt16 nDefBulletWidth = 700; static const sal_uInt16 pDefBulletIndents[nDefStyles]= { 1400, 800, 800 }; static const sal_uInt16 pDefBulletWidths[nDefStyles] = { 1000, 850, 700 }; -sal_uInt16 lcl_ImplGetDefBulletWidth( sal_Int16 nDepth ) -{ - return ( nDepth < nDefStyles ) ? pDefBulletWidths[nDepth] : nDefBulletWidth; -} - -sal_uInt16 lcl_ImplGetDefBulletIndent( sal_Int16 nDepth ) -{ - sal_uInt16 nI = 0; - - if( nDepth >= 0 ) - { - for ( sal_Int16 n = 0; n <= nDepth; n++ ) - nI = nI + - ( ( n < nDefStyles ) ? pDefBulletIndents[n] : nDefBulletIndent ); - } - return nI; -} - - // ---------------------------------------------------------------------- // Outliner // ---------------------------------------------------------------------- |