summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-10-21 14:14:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-21 13:00:01 +0000
commit861a322c662eb48b8da21c9d3ad1fa1f2f961391 (patch)
tree218c27389b31068393ccb2117d22cdeaaeedfbee /include
parent965a008d66035069249b1f218f1663f5f9fcf5dd (diff)
loplugin:expandablemethodds in include/editeng
Change-Id: Iaf56cb9c16a4cbfb9ab1636228c77d1033a334f5 Reviewed-on: https://gerrit.libreoffice.org/30132 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/editeng/AccessibleImageBullet.hxx2
-rw-r--r--include/editeng/brushitem.hxx2
-rw-r--r--include/editeng/bulletitem.hxx8
-rw-r--r--include/editeng/editobj.hxx3
-rw-r--r--include/editeng/svxrtf.hxx5
5 files changed, 0 insertions, 20 deletions
diff --git a/include/editeng/AccessibleImageBullet.hxx b/include/editeng/AccessibleImageBullet.hxx
index 1b33069ebf9c..174963dbb03a 100644
--- a/include/editeng/AccessibleImageBullet.hxx
+++ b/include/editeng/AccessibleImageBullet.hxx
@@ -178,8 +178,6 @@ namespace accessibility
*/
SvxViewForwarder& GetViewForwarder() const;
- const Point& GetEEOffset() const { return maEEOffset; }
-
// the paragraph index in the edit engine (guarded by solar mutex)
sal_Int32 mnParagraphIndex;
diff --git a/include/editeng/brushitem.hxx b/include/editeng/brushitem.hxx
index 75a8593de7dc..cbdb89c8ed40 100644
--- a/include/editeng/brushitem.hxx
+++ b/include/editeng/brushitem.hxx
@@ -105,8 +105,6 @@ public:
const OUString& GetGraphicLink() const { return maStrLink; }
const OUString& GetGraphicFilter() const { return maStrFilter; }
- void SetShadingValue( const sal_Int32 nNew );
-
//UUUU get graphic transparency in percent
sal_Int8 getGraphicTransparency() const;
void setGraphicTransparency(sal_Int8 nNew);
diff --git a/include/editeng/bulletitem.hxx b/include/editeng/bulletitem.hxx
index aef6d072bc9a..3d75512d2b5c 100644
--- a/include/editeng/bulletitem.hxx
+++ b/include/editeng/bulletitem.hxx
@@ -70,22 +70,14 @@ public:
virtual SvStream& Store( SvStream & , sal_uInt16 nItemVersion ) const override;
OUString GetFullText() const;
- sal_Unicode GetSymbol() const { return cSymbol; }
- const OUString& GetPrevText() const { return aPrevText; }
- const OUString& GetFollowText() const { return aFollowText; }
- sal_uInt16 GetStart() const { return nStart; }
long GetWidth() const { return nWidth; }
- SvxBulletStyle GetStyle() const { return nStyle; }
const vcl::Font& GetFont() const { return aFont; }
- sal_uInt16 GetScale() const { return nScale; }
const GraphicObject& GetGraphicObject() const;
void SetGraphicObject( const GraphicObject& rGraphicObject );
void SetSymbol( sal_Unicode c) { cSymbol = c; }
- void SetPrevText( const OUString& rStr) { aPrevText = rStr;}
- void SetFollowText(const OUString& rStr) { aFollowText=rStr;}
void SetStart( sal_uInt16 nNew ) { nStart = nNew; }
void SetWidth( long nNew ) { nWidth = nNew; }
diff --git a/include/editeng/editobj.hxx b/include/editeng/editobj.hxx
index 6920d0628c10..da35f32d03fe 100644
--- a/include/editeng/editobj.hxx
+++ b/include/editeng/editobj.hxx
@@ -68,9 +68,6 @@ class EDITENG_DLLPUBLIC EditTextObject : public SfxItemPoolUser
EditTextObject( SfxItemPool* pPool );
- void StoreData( SvStream& rStrm ) const;
- void CreateData( SvStream& rStrm );
-
public:
EditTextObject( const EditTextObject& r );
virtual ~EditTextObject();
diff --git a/include/editeng/svxrtf.hxx b/include/editeng/svxrtf.hxx
index 0ffa552a85da..1018440b7b14 100644
--- a/include/editeng/svxrtf.hxx
+++ b/include/editeng/svxrtf.hxx
@@ -216,8 +216,6 @@ class EDITENG_DLLPUBLIC SvxRTFParser : public SvRTFParser
void operator=(SvxRTFParser const&) = delete;
void ClearColorTbl();
- void ClearFontTbl();
- void ClearStyleTbl();
void ClearAttrStack();
SvxRTFItemStackType* GetAttrSet_(); // Create new ItemStackType:s
@@ -355,9 +353,6 @@ public:
void MoveFullNode(const EditNodeIdx &rOldNode,
const EditNodeIdx &rNewNode);
- sal_Int32 GetSttNodeIdx() const { return pSttNd->GetIdx(); }
- sal_Int32 GetEndNodeIdx() const { return pEndNd->GetIdx(); }
-
const EditNodeIdx& GetSttNode() const { return *pSttNd; }
const EditNodeIdx& GetEndNode() const { return *pEndNd; }