From c4379aacbe9d5732dadf02c2d4306266e162ffc6 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 3 Jul 2015 15:24:09 +0200 Subject: loplugin:unusedmethods sot Change-Id: I14e8bb3e4e38ade1044ce1c50c9676a65152724c Reviewed-on: https://gerrit.libreoffice.org/16733 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- include/sot/storage.hxx | 5 ----- 1 file changed, 5 deletions(-) (limited to 'include/sot/storage.hxx') diff --git a/include/sot/storage.hxx b/include/sot/storage.hxx index 0850bde76323..8d0bcc8db091 100644 --- a/include/sot/storage.hxx +++ b/include/sot/storage.hxx @@ -62,7 +62,6 @@ private: public: static void * CreateInstance( SotObject ** = NULL ); static SotFactory * ClassFactory(); - virtual const SotFactory * GetSvFactory() const SAL_OVERRIDE; virtual void * Cast( const SotFactory * ) SAL_OVERRIDE; virtual void ResetError() SAL_OVERRIDE; @@ -116,7 +115,6 @@ private: public: static void * CreateInstance( SotObject ** = NULL ); static SotFactory * ClassFactory(); - virtual const SotFactory * GetSvFactory() const SAL_OVERRIDE; virtual void * Cast( const SotFactory * ) SAL_OVERRIDE; SvMemoryStream * CreateMemoryStream(); @@ -139,7 +137,6 @@ public: return m_nVersion; } - sal_uLong GetErrorCode() const { return m_nError; } sal_uLong GetError() const { return ERRCODE_TOERROR(m_nError); } void SetError( sal_uLong nErrorCode ) { @@ -147,9 +144,7 @@ public: m_nError = nErrorCode; } - bool IsRoot() const { return m_bIsRoot; } void SignAsRoot( bool b = true ) { m_bIsRoot = b; } - void SetDeleteStream( bool bDelete ) { m_bDelStm = bDelete; } // own data sector void SetClass( const SvGlobalName & rClass, -- cgit