summaryrefslogtreecommitdiff
path: root/registry/source/reflwrit.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'registry/source/reflwrit.cxx')
-rw-r--r--registry/source/reflwrit.cxx26
1 files changed, 0 insertions, 26 deletions
diff --git a/registry/source/reflwrit.cxx b/registry/source/reflwrit.cxx
index 288beb9d73ad..689bc2daa099 100644
--- a/registry/source/reflwrit.cxx
+++ b/registry/source/reflwrit.cxx
@@ -1165,14 +1165,6 @@ void TypeWriter::createBlop()
extern "C" {
-static void TYPEREG_CALLTYPE acquire(TypeWriterImpl hEntry)
-{
- TypeWriter* pEntry = static_cast<TypeWriter*>(hEntry);
-
- if (pEntry != NULL)
- pEntry->m_refCount++;
-}
-
static void TYPEREG_CALLTYPE release(TypeWriterImpl hEntry)
{
TypeWriter* pEntry = static_cast<TypeWriter*>(hEntry);
@@ -1374,29 +1366,11 @@ RegistryTypeWriter::RegistryTypeWriter(RTTypeClass RTTypeClass,
referenceCount);
}
-RegistryTypeWriter::RegistryTypeWriter(const RegistryTypeWriter& toCopy)
- : m_hImpl(toCopy.m_hImpl)
-{
- acquire(m_hImpl);
-}
-
RegistryTypeWriter::~RegistryTypeWriter()
{
release(m_hImpl);
}
-RegistryTypeWriter& RegistryTypeWriter::operator == (const RegistryTypeWriter& toAssign)
-{
- if (m_hImpl != toAssign.m_hImpl)
- {
- release(m_hImpl);
- m_hImpl = toAssign.m_hImpl;
- acquire(m_hImpl);
- }
-
- return *this;
-}
-
void RegistryTypeWriter::setFieldData( sal_uInt16 index,
const rtl::OUString& name,
const rtl::OUString& typeName,