cid#1636522 Missing move assignment operator
Change-Id: I2d5f4e69b5cb9205743484c23443df2084da4fad Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177721 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
This commit is contained in:
parent
a0db0bd2e8
commit
02b2dce99c
2 changed files with 1 additions and 24 deletions
|
@ -4413,24 +4413,6 @@ PPTParaPropSet::PPTParaPropSet()
|
|||
mxParaSet->mnHasAnm = 1;
|
||||
}
|
||||
|
||||
PPTParaPropSet::PPTParaPropSet( PPTParaPropSet const & rParaPropSet )
|
||||
{
|
||||
mxParaSet = rParaPropSet.mxParaSet;
|
||||
}
|
||||
|
||||
PPTParaPropSet::~PPTParaPropSet()
|
||||
{
|
||||
}
|
||||
|
||||
PPTParaPropSet& PPTParaPropSet::operator=( const PPTParaPropSet& rParaPropSet )
|
||||
{
|
||||
if ( this != &rParaPropSet )
|
||||
{
|
||||
mxParaSet = rParaPropSet.mxParaSet;
|
||||
}
|
||||
return *this;
|
||||
}
|
||||
|
||||
PPTCharPropSet::PPTCharPropSet(sal_uInt32 nParagraph)
|
||||
: mnOriginalTextPos(0)
|
||||
, mnParagraph(nParagraph)
|
||||
|
|
|
@ -904,12 +904,7 @@ struct ImplPPTParaPropSet final : public salhelper::SimpleReferenceObject
|
|||
struct PPTParaPropSet
|
||||
{
|
||||
rtl::Reference<ImplPPTParaPropSet> mxParaSet;
|
||||
|
||||
PPTParaPropSet();
|
||||
PPTParaPropSet( PPTParaPropSet const & rParaPropSet );
|
||||
~PPTParaPropSet();
|
||||
|
||||
PPTParaPropSet& operator=( const PPTParaPropSet& rParaPropSet );
|
||||
PPTParaPropSet();
|
||||
};
|
||||
|
||||
struct ImplPPTCharPropSet
|
||||
|
|
Loading…
Reference in a new issue