summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-08-08 13:55:15 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-08-09 14:17:08 +0200
commitf4fb14ed796cec7a02f3a06a6556997ae415e79d (patch)
treef4d1cd6d31d8b9530786ee90ce9034e5e4d950c6 /editeng
parentd84bf553afa510e5c674817fa480ac0af62e4945 (diff)
loplugin:unusedmethods
Change-Id: I0308ddd467ab6e283c0503f98885a248eb28290c Reviewed-on: https://gerrit.libreoffice.org/58738 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/textitem.cxx8
-rw-r--r--editeng/source/outliner/outlobj.cxx5
2 files changed, 2 insertions, 11 deletions
diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx
index 36cf5ca8967e..fd6ce05c3970 100644
--- a/editeng/source/items/textitem.cxx
+++ b/editeng/source/items/textitem.cxx
@@ -1754,18 +1754,14 @@ void SvxColorItem::SetValue( const Color& rNewCol )
// class SvxCharSetColorItem ---------------------------------------------
SvxCharSetColorItem::SvxCharSetColorItem( const sal_uInt16 nId ) :
- SvxColorItem( nId ),
-
- eFrom( RTL_TEXTENCODING_DONTKNOW )
+ SvxColorItem( nId )
{
}
SvxCharSetColorItem::SvxCharSetColorItem( const Color& rCol,
const sal_uInt16 nId ) :
- SvxColorItem( rCol, nId ),
-
- eFrom( RTL_TEXTENCODING_DONTKNOW )
+ SvxColorItem( rCol, nId )
{
}
diff --git a/editeng/source/outliner/outlobj.cxx b/editeng/source/outliner/outlobj.cxx
index 181aa114709f..5ecfaf6409f5 100644
--- a/editeng/source/outliner/outlobj.cxx
+++ b/editeng/source/outliner/outlobj.cxx
@@ -178,11 +178,6 @@ const EditTextObject& OutlinerParaObject::GetTextObject() const
return *mpImpl->mpEditTextObject;
}
-bool OutlinerParaObject::IsEditDoc() const
-{
- return mpImpl->mbIsEditDoc;
-}
-
const ParagraphData& OutlinerParaObject::GetParagraphData(sal_Int32 nIndex) const
{
if(0 <= nIndex && static_cast<size_t>(nIndex) < mpImpl->maParagraphDataVector.size())