diff options
Diffstat (limited to 'sd/source/ui')
-rw-r--r-- | sd/source/ui/dlg/sdtreelb.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/inc/sdtreelb.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/sdtreelb.cxx b/sd/source/ui/dlg/sdtreelb.cxx index 10af8fb6559b..b60125f167bf 100644 --- a/sd/source/ui/dlg/sdtreelb.cxx +++ b/sd/source/ui/dlg/sdtreelb.cxx @@ -288,10 +288,10 @@ OUString SdPageObjsTLB::GetEntryLongDescription( SvTreeListEntry* pEntry ) const } void SdPageObjsTLB::InitEntry(SvTreeListEntry* pEntry, - const OUString& rStr, const Image& rImg1, const Image& rImg2, SvLBoxButtonKind eButtonKind) + const OUString& rStr, const Image& rImg1, const Image& rImg2) { sal_uInt16 nColToHilite = 1; //0==Bitmap;1=="Spalte1";2=="Spalte2" - SvTreeListBox::InitEntry( pEntry, rStr, rImg1, rImg2, eButtonKind ); + SvTreeListBox::InitEntry( pEntry, rStr, rImg1, rImg2 ); SvLBoxString& rCol = static_cast<SvLBoxString&>(pEntry->GetItem( nColToHilite )); pEntry->ReplaceItem(std::make_unique<SvLBoxString>(rCol.GetText()), nColToHilite ); } diff --git a/sd/source/ui/inc/sdtreelb.hxx b/sd/source/ui/inc/sdtreelb.hxx index 12d7a7eededc..f4c62ba1f207 100644 --- a/sd/source/ui/inc/sdtreelb.hxx +++ b/sd/source/ui/inc/sdtreelb.hxx @@ -174,7 +174,7 @@ private: using Window::GetDropTarget; virtual SvTreeListEntry* GetDropTarget (const Point& rLocation) override; - virtual void InitEntry(SvTreeListEntry*, const OUString&, const Image&, const Image&,SvLBoxButtonKind) override; + virtual void InitEntry(SvTreeListEntry*, const OUString&, const Image&, const Image&) override; public: |