summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chart2/source/inc/ObjectIdentifier.hxx1
-rw-r--r--chart2/source/tools/ObjectIdentifier.cxx8
-rw-r--r--framework/source/services/autorecovery.cxx14
-rw-r--r--idl/inc/hash.hxx8
4 files changed, 0 insertions, 31 deletions
diff --git a/chart2/source/inc/ObjectIdentifier.hxx b/chart2/source/inc/ObjectIdentifier.hxx
index 574b2c7cf0c5..a38cdc5e6847 100644
--- a/chart2/source/inc/ObjectIdentifier.hxx
+++ b/chart2/source/inc/ObjectIdentifier.hxx
@@ -96,7 +96,6 @@ public:
virtual ~ObjectIdentifier();
ObjectIdentifier( const ObjectIdentifier& rOID );
- ObjectIdentifier& operator=( const ObjectIdentifier& rOID );
bool operator==( const ObjectIdentifier& rOID ) const;
bool operator!=( const ObjectIdentifier& rOID ) const;
bool operator<( const ObjectIdentifier& rOID ) const;
diff --git a/chart2/source/tools/ObjectIdentifier.cxx b/chart2/source/tools/ObjectIdentifier.cxx
index 94862b2cad22..4a653531e5db 100644
--- a/chart2/source/tools/ObjectIdentifier.cxx
+++ b/chart2/source/tools/ObjectIdentifier.cxx
@@ -279,14 +279,6 @@ ObjectIdentifier::ObjectIdentifier( const ObjectIdentifier& rOID )
:m_aObjectCID( rOID.m_aObjectCID )
,m_xAdditionalShape( rOID.m_xAdditionalShape )
{
-
-}
-
-ObjectIdentifier& ObjectIdentifier::operator=( const ObjectIdentifier& rOID )
-{
- m_aObjectCID = rOID.m_aObjectCID;
- m_xAdditionalShape = rOID.m_xAdditionalShape;
- return *this;
}
bool ObjectIdentifier::operator==( const ObjectIdentifier& rOID ) const
diff --git a/framework/source/services/autorecovery.cxx b/framework/source/services/autorecovery.cxx
index 40238c69105d..5a9e4e626bcd 100644
--- a/framework/source/services/autorecovery.cxx
+++ b/framework/source/services/autorecovery.cxx
@@ -118,9 +118,7 @@ public:
DispatchParams();
DispatchParams(const ::comphelper::SequenceAsHashMap& lArgs ,
const css::uno::Reference< css::uno::XInterface >& xOwner);
- ~DispatchParams();
- DispatchParams& operator=(const DispatchParams& rCopy);
void forget();
public:
@@ -1219,18 +1217,6 @@ DispatchParams::DispatchParams(const ::comphelper::SequenceAsHashMap&
m_xHoldRefForAsyncOpAlive = xOwner;
};
-DispatchParams::~DispatchParams()
-{};
-
-DispatchParams& DispatchParams::operator=(const DispatchParams& rCopy)
-{
- m_xProgress = rCopy.m_xProgress;
- m_sSavePath = rCopy.m_sSavePath;
- m_nWorkingEntryID = rCopy.m_nWorkingEntryID;
- m_xHoldRefForAsyncOpAlive = rCopy.m_xHoldRefForAsyncOpAlive;
- return *this;
-}
-
void DispatchParams::forget()
{
m_sSavePath.clear();
diff --git a/idl/inc/hash.hxx b/idl/inc/hash.hxx
index 6546ca79eb35..458a22d29589 100644
--- a/idl/inc/hash.hxx
+++ b/idl/inc/hash.hxx
@@ -73,14 +73,6 @@ public:
void SetValue( sal_uLong n ) { nValue = n; }
sal_uLong GetValue() const { return nValue; }
-
- SvStringHashEntry & operator = ( const SvStringHashEntry & rRef )
- { SvRefBase::operator=( rRef );
- aName = rRef.aName;
- nValue = rRef.nValue;
- bHasId = rRef.bHasId;
- return *this;
- }
};
class SvStringHashTable : public SvHashTable