summaryrefslogtreecommitdiff
path: root/sw/source/core/tox/tox.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/tox/tox.cxx')
-rw-r--r--sw/source/core/tox/tox.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/sw/source/core/tox/tox.cxx b/sw/source/core/tox/tox.cxx
index 75a493f3b78b..c5a105e91ff8 100644
--- a/sw/source/core/tox/tox.cxx
+++ b/sw/source/core/tox/tox.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include <tools/resid.hxx>
#include <hintids.hxx>
#include <swtypes.hxx>
@@ -131,7 +130,6 @@ TYPEINIT2( SwTOXMark, SfxPoolItem, SwClient ); // fuers rtti
TOX dtor and ctor
--------------------------------------------------------------------*/
-
/// pool default constructor
SwTOXMark::SwTOXMark()
: SfxPoolItem( RES_TXTATR_TOXMARK )
@@ -143,7 +141,6 @@ SwTOXMark::SwTOXMark()
{
}
-
SwTOXMark::SwTOXMark( const SwTOXType* pTyp )
: SfxPoolItem( RES_TXTATR_TOXMARK )
, SwModify( const_cast<SwTOXType*>(pTyp) )
@@ -154,7 +151,6 @@ SwTOXMark::SwTOXMark( const SwTOXType* pTyp )
{
}
-
SwTOXMark::SwTOXMark( const SwTOXMark& rCopy )
: SfxPoolItem( RES_TXTATR_TOXMARK )
, SwModify(rCopy.GetRegisteredInNonConst())
@@ -171,12 +167,10 @@ SwTOXMark::SwTOXMark( const SwTOXMark& rCopy )
aAltText = rCopy.aAltText;
}
-
SwTOXMark::~SwTOXMark()
{
}
-
void SwTOXMark::RegisterToTOXType( SwTOXType& rMark )
{
rMark.Add(this);
@@ -188,7 +182,6 @@ bool SwTOXMark::operator==( const SfxPoolItem& rAttr ) const
return GetRegisteredIn() == ((SwTOXMark&)rAttr).GetRegisteredIn();
}
-
SfxPoolItem* SwTOXMark::Clone( SfxItemPool* ) const
{
return new SwTOXMark( *this );
@@ -253,7 +246,6 @@ SwTOXType::SwTOXType( TOXTypes eTyp, const OUString& rName )
{
}
-
SwTOXType::SwTOXType(const SwTOXType& rCopy)
: SwModify( (SwModify*)rCopy.GetRegisteredIn() ),
aName(rCopy.aName),
@@ -366,14 +358,12 @@ SwForm::SwForm( TOXTypes eTyp ) // #i21237#
}
}
-
SwForm::SwForm(const SwForm& rForm)
: eType( rForm.eType )
{
*this = rForm;
}
-
SwForm& SwForm::operator=(const SwForm& rForm)
{
eType = rForm.eType;
@@ -414,7 +404,6 @@ bool operator == (const SwFormToken & rToken, FormTokenType eType)
return rToken.eTokenType == eType;
}
-
void SwForm::AdjustTabStops(SwDoc& rDoc, sal_Bool bInsertNewTapStops) // #i21237#
{
for(sal_uInt16 nLevel = 1; nLevel < GetFormMax(); nLevel++)
@@ -504,7 +493,6 @@ OUString SwForm::GetFormAuth() {return OUString("<A>");}
Ctor TOXBase
--------------------------------------------------------------------*/
-
SwTOXBase::SwTOXBase(const SwTOXType* pTyp, const SwForm& rForm,
sal_uInt16 nCreaType, const OUString& rTitle )
: SwClient((SwModify*)pTyp)
@@ -524,7 +512,6 @@ SwTOXBase::SwTOXBase(const SwTOXType* pTyp, const SwForm& rForm,
aData.nOptions = 0;
}
-
SwTOXBase::SwTOXBase( const SwTOXBase& rSource, SwDoc* pDoc )
: SwClient( rSource.GetRegisteredInNonConst() )
, mbKeepExpression(sal_True)
@@ -610,7 +597,6 @@ void SwTOXBase::SetBookmarkName(const OUString& bName)
m_aBookmarkName = bName;
}
-
SwTOXBase & SwTOXBase::operator = (const SwTOXBase & rSource)
{
aForm = rSource.aForm;