From b40068d55dd52f337b0a0da4c876ae4e4473eaec Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 17 Oct 2018 10:02:30 +0200 Subject: loplugin:unusedmethods Change-Id: I73de303f93b3557881dbb84d6d11d89f193da010 Reviewed-on: https://gerrit.libreoffice.org/61868 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/svx/dialcontrol.hxx | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'include') diff --git a/include/svx/dialcontrol.hxx b/include/svx/dialcontrol.hxx index f5c1769d9811..609e01c31af6 100644 --- a/include/svx/dialcontrol.hxx +++ b/include/svx/dialcontrol.hxx @@ -92,33 +92,14 @@ public: virtual Size GetOptimalSize() const override; virtual void Resize() override; - /** Returns true, if the control is not in "don't care" state. */ - bool HasRotation() const; - /** Sets the control to "don't care" state. */ - void SetNoRotation(); - /** Returns the current rotation angle in 1/100 degrees. */ sal_Int32 GetRotation() const; /** Sets the rotation to the passed value (in 1/100 degrees). */ void SetRotation( sal_Int32 nAngle ); - /** Links the passed numeric edit field to the control (bi-directional). - * nDecimalPlaces: - * field value is unsign given decimal places - * default is 0 which means field values are in degrees, - * 2 means 100th of degree - */ - void SetLinkedField( NumericField* pField, sal_Int32 nDecimalPlaces = 0); - /** The passed handler is called whenever the rotation value changes. */ void SetModifyHdl( const Link& rLink ); - /** Save value for later comparison */ - void SaveValue(); - - /** Compare value with the saved value */ - bool IsValueModified(); - protected: struct DialControl_Impl { -- cgit