summaryrefslogtreecommitdiff
path: root/include/svx/graphctl.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-16 11:24:25 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-16 12:18:56 +0000
commit051e660b37549fec7cc42e4471ae65a4cefed495 (patch)
tree720c439d57664224ec579e14a72b5f4ccce391a5 /include/svx/graphctl.hxx
parent1d852b32d7ad89b2317c04958060f366f8922ca4 (diff)
loplugin:unusedmethods svx(part2)
Change-Id: I161360e2f3113c4814fe1c2c095e602b2c93dcd7 Reviewed-on: https://gerrit.libreoffice.org/17120 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svx/graphctl.hxx')
-rw-r--r--include/svx/graphctl.hxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/svx/graphctl.hxx b/include/svx/graphctl.hxx
index 31f62f718265..a5dc16db1953 100644
--- a/include/svx/graphctl.hxx
+++ b/include/svx/graphctl.hxx
@@ -85,7 +85,6 @@ public:
virtual void dispose() SAL_OVERRIDE;
void SetWinStyle( WinBits nWinBits );
- WinBits GetWinStyle() const { return nWinStyle; }
void SetGraphic( const Graphic& rGraphic, bool bNewModel = true );
const Graphic& GetGraphic() const { return aGraphic; }
@@ -94,13 +93,11 @@ public:
const Point& GetMousePos() const { return aMousePos; }
void SetEditMode( const bool bEditMode );
- bool IsEditMode() const { return bEditMode; }
void SetPolyEditMode( const sal_uInt16 nPolyEdit );
sal_uInt16 GetPolyEditMode() const { return nPolyEdit; }
void SetObjKind( const SdrObjKind eObjKind );
- SdrObjKind GetObjKind() const { return eObjKind; }
SdrModel* GetSdrModel() const { return pModel; }
SdrView* GetSdrView() const { return pView; }
@@ -108,16 +105,10 @@ public:
bool IsChanged() const { return bSdrMode && pModel->IsChanged(); }
void SetMousePosLink( const Link<>& rLink ) { aMousePosLink = rLink; }
- const Link<>& GetMousePosLink() const { return aMousePosLink; }
void SetGraphSizeLink( const Link<>& rLink ) { aGraphSizeLink = rLink; }
- const Link<>& GetGraphSizeLink() const { return aGraphSizeLink; }
-
- void SetMarkObjLink( const Link<>& rLink ) { aMarkObjLink = rLink; }
- const Link<>& GetMarkObjLink() const { return aMarkObjLink; }
void SetUpdateLink( const Link<>& rLink ) { aUpdateLink = rLink; }
- const Link<>& GetUpdateLink() const { return aUpdateLink; }
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() SAL_OVERRIDE;
};