Kaydet (Commit) 469a202f authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Get it to build.

Change-Id: Ie239d3d0f8f4ec81a4c5dbed3a1a132117875c7c
üst 5388cd54
...@@ -445,8 +445,7 @@ void SvxRedlinTable::InitEntry(SvTreeListEntry* pEntry, const OUString& rStr, ...@@ -445,8 +445,7 @@ void SvxRedlinTable::InitEntry(SvTreeListEntry* pEntry, const OUString& rStr,
pEntry->AddItem( pButton ); pEntry->AddItem( pButton );
} }
pContextBmp= new SvLBoxContextBmp( pEntry,0, rColl,rExp, pContextBmp= new SvLBoxContextBmp(pEntry,0, rColl,rExp, true);
SVLISTENTRYFLAG_EXPANDED);
pEntry->AddItem( pContextBmp ); pEntry->AddItem( pContextBmp );
pString = new SvLBoxColorString( pEntry, 0, rStr ,aEntryColor); pString = new SvLBoxColorString( pEntry, 0, rStr ,aEntryColor);
......
...@@ -140,7 +140,7 @@ void SvxFontListBox::InitEntry( ...@@ -140,7 +140,7 @@ void SvxFontListBox::InitEntry(
if( nTreeFlags & TREEFLAG_CHKBTN ) if( nTreeFlags & TREEFLAG_CHKBTN )
pEntry->AddItem( new SvLBoxButton( pEntry, eButtonKind, 0, pEntry->AddItem( new SvLBoxButton( pEntry, eButtonKind, 0,
pCheckButtonData ) ); pCheckButtonData ) );
pEntry->AddItem( new SvLBoxContextBmp( pEntry, 0, rCollImg, rExpImg, SVLISTENTRYFLAG_EXPANDED ) ); pEntry->AddItem( new SvLBoxContextBmp(pEntry, 0, rCollImg, rExpImg, true) );
pEntry->AddItem( new SvLBoxFontString( pEntry, 0, rEntryText, maEntryFont, mpEntryColor ) ); pEntry->AddItem( new SvLBoxFontString( pEntry, 0, rEntryText, maEntryFont, mpEntryColor ) );
} }
else else
......
...@@ -586,8 +586,8 @@ void AtomContainerTreeListBox::SetTabs() ...@@ -586,8 +586,8 @@ void AtomContainerTreeListBox::SetTabs()
void AtomContainerTreeListBox::InitEntry(SvTreeListEntry* pEntry, const OUString& aStr, void AtomContainerTreeListBox::InitEntry(SvTreeListEntry* pEntry, const OUString& aStr,
const Image& aCollEntryBmp, const Image& aExpEntryBmp) const Image& aCollEntryBmp, const Image& aExpEntryBmp)
{ {
pEntry->AddItem( new SvLBoxContextBmp( pEntry,0, aCollEntryBmp,aExpEntryBmp, SVLISTENTRYFLAG_EXPANDED ) ); pEntry->AddItem( new SvLBoxContextBmp(pEntry,0, aCollEntryBmp,aExpEntryBmp, true) );
pEntry->AddItem( new SvLBoxContextBmp( pEntry,0, maImgAtom, maImgAtom, SVLISTENTRYFLAG_EXPANDED ) ); pEntry->AddItem( new SvLBoxContextBmp(pEntry,0, maImgAtom, maImgAtom, true) );
pEntry->AddItem( new AtomBoxString( pEntry, aStr ) ); pEntry->AddItem( new AtomBoxString( pEntry, aStr ) );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment