diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-14 13:54:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-15 09:36:41 +0200 |
commit | abb87856dd6a722245cc9dd690bfcec6ecd901da (patch) | |
tree | a2d28f2bebb91cb8b25a51a8b5ae9890ebddd3ce /sc/source/ui/inc/drawview.hxx | |
parent | 6f2ce5c31708e5914d6d17d69b45f15a4429f8e3 (diff) |
loplugin:unusedmethods unused return value in sc
Change-Id: Ic0b4d7efb2679f735892806d66258af231cda3fe
Diffstat (limited to 'sc/source/ui/inc/drawview.hxx')
-rw-r--r-- | sc/source/ui/inc/drawview.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/drawview.hxx b/sc/source/ui/inc/drawview.hxx index 0705153de94c..9548292786af 100644 --- a/sc/source/ui/inc/drawview.hxx +++ b/sc/source/ui/inc/drawview.hxx @@ -89,7 +89,7 @@ public: void InvalidateAttribs(); void InvalidateDrawTextAttrs(); - bool BeginDrag( vcl::Window* pWindow, const Point& rStartPos ); + void BeginDrag( vcl::Window* pWindow, const Point& rStartPos ); void DoCut(); void DoCopy(); @@ -114,7 +114,7 @@ public: bool HasMarkedControl() const; bool HasMarkedInternal() const; - bool InsertObjectSafe(SdrObject* pObj, SdrPageView& rPV, SdrInsertFlags nOptions=SdrInsertFlags::NONE); + void InsertObjectSafe(SdrObject* pObj, SdrPageView& rPV, SdrInsertFlags nOptions=SdrInsertFlags::NONE); /** Returns the selected object, if it is the caption object of a cell note. @param ppCaptData (out-param) If not null, returns the pointer to the caption object data. */ @@ -141,7 +141,7 @@ public: SdrObject* GetObjectByName(const OUString& rName); bool GetObjectIsMarked( SdrObject * pObject ); - bool SelectCurrentViewObject( const OUString& rName ); + void SelectCurrentViewObject( const OUString& rName ); // #i123922# helper which checks if a Graphic may be applied to an existing // SdrObject; if it's a SdrGrafObj the fill will be replaced. If it's a |