diff options
author | gt <gt@openoffice.org> | 2002-07-26 12:32:40 +0000 |
---|---|---|
committer | gt <gt@openoffice.org> | 2002-07-26 12:32:40 +0000 |
commit | 0837fe7abf9d012b2871cad36e71b5ae67cf5882 (patch) | |
tree | 2401ebad074fa3d401f87d94f9129b1121802026 /sfx2 | |
parent | 6a838faa50366542dc3ca1e153cd381875a95e8b (diff) |
#101060# rename of InsertEntry because of conflicts
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/inc/docvor.hxx | 6 | ||||
-rw-r--r-- | sfx2/source/doc/docvor.cxx | 14 |
2 files changed, 10 insertions, 10 deletions
diff --git a/sfx2/inc/docvor.hxx b/sfx2/inc/docvor.hxx index 7c765f28e008..0c6663bf4547 100644 --- a/sfx2/inc/docvor.hxx +++ b/sfx2/inc/docvor.hxx @@ -2,9 +2,9 @@ * * $RCSfile: docvor.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: gt $ $Date: 2002-07-26 12:58:27 $ + * last change: $Author: gt $ $Date: 2002-07-26 13:31:35 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -163,7 +163,7 @@ private: SvLBoxEntry* pParent, SvLBoxEntry* pEntry = 0 ) const; USHORT GetLevelCount_Impl( SvLBoxEntry* pParent ) const; - SvLBoxEntry* InsertEntry( const XubString& rText, BMPTYPE eBmpType, + SvLBoxEntry* InsertEntryByBmpType( const XubString& rText, BMPTYPE eBmpType, SvLBoxEntry* pParent = NULL, BOOL bChildsOnDemand = FALSE, ULONG nPos = LIST_APPEND, void* pUserData = NULL ); }; diff --git a/sfx2/source/doc/docvor.cxx b/sfx2/source/doc/docvor.cxx index b433ccee1ea4..cb52c2437edc 100644 --- a/sfx2/source/doc/docvor.cxx +++ b/sfx2/source/doc/docvor.cxx @@ -2,9 +2,9 @@ * * $RCSfile: docvor.cxx,v $ * - * $Revision: 1.23 $ + * $Revision: 1.24 $ * - * last change: $Author: gt $ $Date: 2002-07-26 13:14:16 $ + * last change: $Author: gt $ $Date: 2002-07-26 13:32:40 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1194,7 +1194,7 @@ void SfxOrganizeListBox_Impl::RequestingChilds( SvLBoxEntry* pEntry ) USHORT i = (USHORT)GetModel()->GetRelPos(pEntry); const USHORT nEntryCount = pMgr->GetTemplates()->GetCount(i); for(USHORT j = 0; j < nEntryCount; ++j) - InsertEntry( pMgr->GetTemplates()->GetName( i, j ), BMPTYPE_DOC, pEntry, TRUE ); + InsertEntryByBmpType( pMgr->GetTemplates()->GetName( i, j ), BMPTYPE_DOC, pEntry, TRUE ); } else { @@ -1315,7 +1315,7 @@ USHORT SfxOrganizeListBox_Impl::GetLevelCount_Impl(SvLBoxEntry* pParent) const //------------------------------------------------------------------------- -SvLBoxEntry* SfxOrganizeListBox_Impl::InsertEntry( const XubString& rText, BMPTYPE eBmpType, +SvLBoxEntry* SfxOrganizeListBox_Impl::InsertEntryByBmpType( const XubString& rText, BMPTYPE eBmpType, SvLBoxEntry* pParent, BOOL bChildsOnDemand, ULONG nPos, void* pUserData ) { SvLBoxEntry* pEntry = NULL; @@ -1333,7 +1333,7 @@ SvLBoxEntry* SfxOrganizeListBox_Impl::InsertEntry( const XubString& rText, BMPTY pColHC = &aClosedFolderBmpHC; break; default: - DBG_ERROR( "SfxOrganizeListBox_Impl::InsertEntry(): something forgotten?!" ); + DBG_ERROR( "SfxOrganizeListBox_Impl::InsertEntryByBmpType(): something forgotten?!" ); case BMPTYPE_DOC: pExp = &aOpenedDocBmp; @@ -1421,14 +1421,14 @@ void SfxOrganizeListBox_Impl::Reset() { const USHORT nCount = pMgr->GetTemplates()->GetRegionCount(); for ( USHORT i = 0; i < nCount; ++i ) - InsertEntry( pMgr->GetTemplates()->GetFullRegionName(i), BMPTYPE_FOLDER, 0, TRUE ); + InsertEntryByBmpType( pMgr->GetTemplates()->GetFullRegionName(i), BMPTYPE_FOLDER, 0, TRUE ); } else { const SfxObjectList& rList = pMgr->GetObjectList(); const USHORT nCount = rList.Count(); for ( USHORT i = 0; i < nCount; ++i ) - InsertEntry( rList.GetBaseName(i), BMPTYPE_DOC, 0, TRUE ); + InsertEntryByBmpType( rList.GetBaseName(i), BMPTYPE_DOC, 0, TRUE ); } SetUpdateMode(TRUE); |