2007/11/22 13:10:39 fs 1.13.28.1: #i81658# moved the DBA services to use the helpers in unotools/componentresmodule resp. comphelper/componentmodule. Those helpers allow for old- and new-style singletons to co-exist, which wasn't the case for the old helpers previously found in dba_reghelper.hxx
2006/07/21 11:14:14 fs 1.9.4.2: still #i67635#: ooops don't access a NULL m_pColumns in disposing ...
2006/07/21 11:03:37 fs 1.9.4.1: #i67635#
make m_pColumns an ::sdt::auto_ptr, again
Holding it as ImplementationReference is bad, since this would |acquire| it, but
it delegates all |acquire| and |release| calls to its parent (ourself)
Holding it as auto_ptr doesn't hurt: If we're in the dtor, then nobody can
have a reference to the columns, since this would have been delegated to
ourself, which means we could not be in the dtor.
2006/07/13 07:10:06 fs 1.6.8.3: RESYNC: (1.6-1.7); FILE MERGED
2006/07/06 07:41:12 oj 1.6.8.2: unused variable removed
2006/07/06 06:12:52 oj 1.6.8.1: #i66629# listen at documentmodelimpl and not any longer at the ds
2006/06/27 11:59:49 fs 1.5.118.4: RESYNC: (1.5-1.6); FILE MERGED
2006/06/16 13:19:31 fs 1.5.118.3: added explanation for the previous change
2006/06/16 13:14:27 fs 1.5.118.2: ChildHelper_Impl did not work as expected (the parent of m_pColumns are we ourself, and we die earlier than the column descriptor which we put into m_pImpl
2006/06/16 11:47:38 fs 1.5.118.1: during #i51143#:
refactored VCollection:
- createEmptyObject now named createDescriptor
- cloneObject removed
- appendObject now returns the newly created object
(previously done via a subsequent call to cloneObject)