diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-28 10:10:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-29 07:28:57 +0100 |
commit | a566fd1c1a50f9bcb4c69a19bdf4fb1955285d93 (patch) | |
tree | 13273efcf8aa69ce39a1860dc3d111c071e6a7b3 /include | |
parent | 411260d836e7bf6c693b9b7d16af1b36184133af (diff) |
loplugin:unusedmethods
Change-Id: I2efb5c0e5735c179314c6c5de87821cee3b033e1
Reviewed-on: https://gerrit.libreoffice.org/45386
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/svxrtf.hxx | 3 | ||||
-rw-r--r-- | include/sfx2/objface.hxx | 1 | ||||
-rw-r--r-- | include/svx/obj3d.hxx | 3 | ||||
-rw-r--r-- | include/svx/svdpage.hxx | 3 | ||||
-rw-r--r-- | include/tools/globname.hxx | 1 | ||||
-rw-r--r-- | include/vcl/gdimtf.hxx | 1 | ||||
-rw-r--r-- | include/vcl/menu.hxx | 1 | ||||
-rw-r--r-- | include/vcl/window.hxx | 3 |
8 files changed, 0 insertions, 16 deletions
diff --git a/include/editeng/svxrtf.hxx b/include/editeng/svxrtf.hxx index 02dcbb562ebc..76b7bea7df8e 100644 --- a/include/editeng/svxrtf.hxx +++ b/include/editeng/svxrtf.hxx @@ -336,9 +336,6 @@ public: //bad, consider this deprecated. void SetStartPos( const EditPosition& rPos ); - void MoveFullNode(const EditNodeIdx &rOldNode, - const EditNodeIdx &rNewNode); - const EditNodeIdx& GetSttNode() const { return *pSttNd; } const EditNodeIdx& GetEndNode() const { return *pEndNd; } diff --git a/include/sfx2/objface.hxx b/include/sfx2/objface.hxx index becbab341eee..cb0797b5ce6b 100644 --- a/include/sfx2/objface.hxx +++ b/include/sfx2/objface.hxx @@ -78,7 +78,6 @@ public: inline sal_uInt16 Count() const; const SfxSlot* GetRealSlot( const SfxSlot * ) const; - const SfxSlot* GetRealSlot( sal_uInt16 nSlotId ) const; const SfxSlot* GetSlot( sal_uInt16 nSlotId ) const; const SfxSlot* GetSlot( const OUString& rCommand ) const; diff --git a/include/svx/obj3d.hxx b/include/svx/obj3d.hxx index 008482a1dba6..36da39e1e2a4 100644 --- a/include/svx/obj3d.hxx +++ b/include/svx/obj3d.hxx @@ -123,9 +123,6 @@ private: bool mbTfHasChanged : 1; bool mbIsSelected : 1; - public: - void SetBoundVolInvalid(); - protected: void SetTransformChanged(); virtual void NewObjectInserted(const E3dObject* p3DObj); diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx index 060274eaa683..0952a9335ac3 100644 --- a/include/svx/svdpage.hxx +++ b/include/svx/svdpage.hxx @@ -140,9 +140,6 @@ public: /// linked page or linked group object virtual bool IsReadOnly() const; - /// count all objects including objects in Groups - size_t CountAllObjects() const; - /** Makes the object list flat, i.e. the object list content are then tree leaves diff --git a/include/tools/globname.hxx b/include/tools/globname.hxx index b8d73d730ec1..1a9a19e42fca 100644 --- a/include/tools/globname.hxx +++ b/include/tools/globname.hxx @@ -84,7 +84,6 @@ public: TOOLS_DLLPUBLIC friend SvStream & WriteSvGlobalName( SvStream &, const SvGlobalName & ); bool operator < ( const SvGlobalName & rObj ) const; - SvGlobalName& operator += ( sal_uInt32 ); bool operator == ( const SvGlobalName & rObj ) const; bool operator != ( const SvGlobalName & rObj ) const diff --git a/include/vcl/gdimtf.hxx b/include/vcl/gdimtf.hxx index 383c7b3de445..e9384607c218 100644 --- a/include/vcl/gdimtf.hxx +++ b/include/vcl/gdimtf.hxx @@ -157,7 +157,6 @@ public: void AddAction( MetaAction* pAction ); void AddAction( MetaAction* pAction, size_t nPos ); - void RemoveAction( size_t nPos ); void push_back( MetaAction* pAction ); /** * @param pAction takes ownership diff --git a/include/vcl/menu.hxx b/include/vcl/menu.hxx index d8d61f72bdbd..df51890da053 100644 --- a/include/vcl/menu.hxx +++ b/include/vcl/menu.hxx @@ -294,7 +294,6 @@ public: virtual bool IsMenuBar() const = 0; void RemoveDisabledEntries( bool bCheckPopups = true, bool bRemoveEmptyPopups = false ); - bool HasValidEntries(); void UpdateNativeMenu(); diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index bc51c1f8de3d..42cbfcc79df9 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -825,7 +825,6 @@ public: void IncrementLockCount(); void DecrementLockCount(); - bool IsLocked() const; // returns the input language used for the last key stroke // may be LANGUAGE_DONTKNOW if not supported by the OS @@ -928,8 +927,6 @@ public: void SetWindowRegionPixel(); void SetWindowRegionPixel( const vcl::Region& rRegion ); - const vcl::Region& GetWindowRegionPixel() const; - bool IsWindowRegionPixel() const; vcl::Region GetWindowClipRegionPixel() const; vcl::Region GetPaintRegion() const; bool IsInPaint() const; |