#88644# insert some DBG's

This commit is contained in:
Ocke Janssen
2001-08-15 12:05:15 +00:00
parent 1ebb78a93b
commit 99871e3ad6
12 changed files with 109 additions and 40 deletions

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: column.cxx,v $
*
* $Revision: 1.28 $
* $Revision: 1.29 $
*
* last change: $Author: oj $ $Date: 2001-08-13 14:03:54 $
* last change: $Author: oj $ $Date: 2001-08-15 13:04:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -548,11 +548,11 @@ Sequence< ::rtl::OUString > OColumns::getSupportedServiceNames( ) throw (Runtim
void OColumns::append(const ::rtl::OUString& rName, OColumn* pCol)
{
MutexGuard aGuard(m_rMutex);
pCol->acquire();
pCol->m_sName = rName;
OSL_ENSURE(m_aNameMap.find(rName) == m_aNameMap.end(),"OColumns::append: Column already exists");
insertElement(rName,pCol);
insertElement(rName,pCol); // already acuires the column
}
//------------------------------------------------------------------