diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-24 13:12:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-24 15:40:22 +0100 |
commit | 6240967cfc6fe17534db9a64c24113ced3f720be (patch) | |
tree | faf865e66dd50a6cd25f07cd0e79db37567e9512 /svtools | |
parent | 9be6c22ebc225db4d1be7bb0100a2407e9a8eb0c (diff) |
callcatcher: update unused code
Change-Id: I1f2a94cdcd4329af68d946ff0a74ddec4ac1c590
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/treelistbox.cxx | 5 | ||||
-rw-r--r-- | svtools/source/inc/svimpbox.hxx | 7 |
2 files changed, 0 insertions, 12 deletions
diff --git a/svtools/source/contnr/treelistbox.cxx b/svtools/source/contnr/treelistbox.cxx index efb9b936e54b..9eaed195f786 100644 --- a/svtools/source/contnr/treelistbox.cxx +++ b/svtools/source/contnr/treelistbox.cxx @@ -2864,11 +2864,6 @@ void SvTreeListBox::InvalidateEntry(SvTreeListEntry* pEntry) } } -long SvTreeListBox::PaintEntry(SvTreeListEntry* pEntry, long nLine, vcl::RenderContext& rRenderContext, SvLBoxTabFlags nTabFlags) -{ - return PaintEntry1(pEntry, nLine, rRenderContext, nTabFlags); -} - long SvTreeListBox::PaintEntry1(SvTreeListEntry* pEntry, long nLine, vcl::RenderContext& rRenderContext, SvLBoxTabFlags nTabFlags, bool bHasClipRegion) { diff --git a/svtools/source/inc/svimpbox.hxx b/svtools/source/inc/svimpbox.hxx index caf45482bb2f..552cf095062f 100644 --- a/svtools/source/inc/svimpbox.hxx +++ b/svtools/source/inc/svimpbox.hxx @@ -273,7 +273,6 @@ public: void LoseFocus(); void UpdateAll( bool bInvalidateCompleteView= true, bool bUpdateVerSBar = true ); void SetEntryHeight( short nHeight ); - void PaintEntry(SvTreeListEntry* pEntry, vcl::RenderContext& rRenderContext); void InvalidateEntry( SvTreeListEntry* ); void RecalcFocusRect(); @@ -403,12 +402,6 @@ inline Point SvImpLBox::GetEntryPosition( SvTreeListEntry* pEntry ) const return Point( 0, GetEntryLine( pEntry ) ); } -inline void SvImpLBox::PaintEntry(SvTreeListEntry* pEntry, vcl::RenderContext& rRenderContext) -{ - long nY = GetEntryLine(pEntry); - pView->PaintEntry(pEntry, nY, rRenderContext); -} - inline bool SvImpLBox::IsLineVisible( long nY ) const { bool bRet = true; |