summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/xmloff/maptype.hxx2
-rw-r--r--xmloff/source/core/attrlist.cxx5
2 files changed, 0 insertions, 7 deletions
diff --git a/include/xmloff/maptype.hxx b/include/xmloff/maptype.hxx
index 8a292008183e..0e944656f716 100644
--- a/include/xmloff/maptype.hxx
+++ b/include/xmloff/maptype.hxx
@@ -110,8 +110,6 @@ struct XMLPropertyState
: mnIndex( nIndex ) {}
XMLPropertyState( sal_Int32 nIndex, const css::uno::Any& rValue )
: mnIndex( nIndex ), maValue( rValue ) {}
- XMLPropertyState( const XMLPropertyState& rPropState )
- : mnIndex( rPropState.mnIndex ), maValue( rPropState.maValue ) {}
};
#endif // INCLUDED_XMLOFF_MAPTYPE_HXX
diff --git a/xmloff/source/core/attrlist.cxx b/xmloff/source/core/attrlist.cxx
index 5985ef2159be..5673d66f9d93 100644
--- a/xmloff/source/core/attrlist.cxx
+++ b/xmloff/source/core/attrlist.cxx
@@ -58,11 +58,6 @@ struct SvXMLAttributeList_Impl
vecAttribute.reserve(20);
}
- SvXMLAttributeList_Impl( const SvXMLAttributeList_Impl& r ) :
- vecAttribute( r.vecAttribute )
- {
- }
-
::std::vector<struct SvXMLTagAttribute_Impl> vecAttribute;
typedef ::std::vector<struct SvXMLTagAttribute_Impl>::size_type size_type;
};