diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-03-10 16:05:30 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-03-10 16:05:30 +0000 |
commit | bd15c375ac4179a0383498d6a764f4b968d285f0 (patch) | |
tree | f855e7675e2df2d033aec0165366b9b6264b527f /svtools/source/contnr | |
parent | cebfe73443649d3de2317f5bb910c46856afdfcf (diff) |
INTEGRATION: CWS dba24 (1.38.188); FILE MERGED
2005/02/01 15:44:36 fs 1.38.188.1: #i41822# ExtendedWinBits
Diffstat (limited to 'svtools/source/contnr')
-rw-r--r-- | svtools/source/contnr/svtreebx.cxx | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/svtools/source/contnr/svtreebx.cxx b/svtools/source/contnr/svtreebx.cxx index b008d941312e..2c2ff2a1e796 100644 --- a/svtools/source/contnr/svtreebx.cxx +++ b/svtools/source/contnr/svtreebx.cxx @@ -2,9 +2,9 @@ * * $RCSfile: svtreebx.cxx,v $ * - * $Revision: 1.38 $ + * $Revision: 1.39 $ * - * last change: $Author: hr $ $Date: 2004-09-08 17:36:54 $ + * last change: $Author: vg $ $Date: 2005-03-10 17:05:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -167,6 +167,16 @@ SvTreeListBox::~SvTreeListBox() ClearTabList(); } +void SvTreeListBox::SetExtendedWinBits( ExtendedWinBits _nBits ) +{ + pImp->SetExtendedWindowBits( _nBits ); +} + +ExtendedWinBits SvTreeListBox::GetExtendedWinBits() const +{ + return pImp->GetExtendedWindowBits(); +} + void SvTreeListBox::SetModel( SvLBoxTreeList* pNewModel ) { DBG_CHKTHIS(SvTreeListBox,0); @@ -1265,14 +1275,14 @@ void SvTreeListBox::SetSpaceBetweenEntries( short nOffsLogic ) void SvTreeListBox::SetCursor( SvLBoxEntry* pEntry, BOOL bForceNoSelect ) { + DBG_CHKTHIS(SvTreeListBox,0); pImp->SetCursor(pEntry, bForceNoSelect); } void SvTreeListBox::SetCurEntry( SvLBoxEntry* pEntry ) { DBG_CHKTHIS(SvTreeListBox,0); - if( pEntry ) - pImp->SetCurEntry( pEntry ); + pImp->SetCurEntry( pEntry ); } Image SvTreeListBox::GetCollapsedNodeBmp( BmpColorMode _eMode ) const |