summaryrefslogtreecommitdiff
path: root/include/basic
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-01-21 12:15:26 +0200
committerNoel Grandin <noel@peralex.com>2015-01-26 08:42:29 +0200
commitf61dbc302975aaa253b00ea6b141bb12474b3c95 (patch)
tree7150ea10f0111c4e6677030ac568c7be03424e08 /include/basic
parentb44cbb26efe1d0b0950b1e1613e131b506dc3876 (diff)
followup code removal after changing virtual methods to non-virtual
This cleanups up indentation and removes dead classes. This is a followup patch to commit 272b1dd55797aacf511fb4342b0054e3697243f6 "new loplugin: change virtual methods to non-virtual" Change-Id: I1c2139589cf8cb23bb9808defe22c51039d38de1
Diffstat (limited to 'include/basic')
-rw-r--r--include/basic/sbmeth.hxx2
-rw-r--r--include/basic/sbmod.hxx20
-rw-r--r--include/basic/sbxcore.hxx4
3 files changed, 13 insertions, 13 deletions
diff --git a/include/basic/sbmeth.hxx b/include/basic/sbmeth.hxx
index 8b9297a8054a..002589c006ab 100644
--- a/include/basic/sbmeth.hxx
+++ b/include/basic/sbmeth.hxx
@@ -63,7 +63,7 @@ public:
void GetLineRange( sal_uInt16&, sal_uInt16& );
// Interface to execute a method from the applications
- ErrCode Call( SbxValue* pRet = NULL, SbxVariable* pCaller = NULL );
+ ErrCode Call( SbxValue* pRet = NULL, SbxVariable* pCaller = NULL );
virtual void Broadcast( sal_uIntPtr nHintId ) SAL_OVERRIDE;
};
diff --git a/include/basic/sbmod.hxx b/include/basic/sbmod.hxx
index f0cd12a30976..3af8dacdc9ec 100644
--- a/include/basic/sbmod.hxx
+++ b/include/basic/sbmod.hxx
@@ -102,10 +102,10 @@ public:
virtual SbxVariable* Find( const OUString&, SbxClassType ) SAL_OVERRIDE;
- const OUString& GetSource() const;
+ const OUString& GetSource() const;
const OUString& GetSource32() const { return aOUSource;}
const OUString& GetComment() const { return aComment; }
- void SetSource( const OUString& r );
+ void SetSource( const OUString& r );
void SetSource32( const OUString& r );
bool Compile();
@@ -116,14 +116,14 @@ public:
bool IsBP( sal_uInt16 nLine ) const;
bool SetBP( sal_uInt16 nLine );
bool ClearBP( sal_uInt16 nLine );
- void ClearAllBP();
+ void ClearAllBP();
// Store only image, no source (needed for new password protection)
- bool StoreBinaryData( SvStream& );
- bool StoreBinaryData( SvStream&, sal_uInt16 nVer );
- bool LoadBinaryData( SvStream&, sal_uInt16 nVer );
- bool LoadBinaryData( SvStream& );
- bool ExceedsLegacyModuleSize();
+ bool StoreBinaryData( SvStream& );
+ bool StoreBinaryData( SvStream&, sal_uInt16 nVer );
+ bool LoadBinaryData( SvStream&, sal_uInt16 nVer );
+ bool LoadBinaryData( SvStream& );
+ bool ExceedsLegacyModuleSize();
void fixUpMethodStart( bool bCvtToLegacy, SbiImage* pImg = NULL ) const;
bool HasExeCode();
bool IsVBACompat() const { return mbVBACompat;}
@@ -134,8 +134,8 @@ public:
void AddVarName( const OUString& aName );
void RemoveVars();
::com::sun::star::uno::Reference< ::com::sun::star::script::XInvocation > GetUnoModule();
- bool createCOMWrapperForIface( ::com::sun::star::uno::Any& o_rRetAny, SbClassModuleObject* pProxyClassModuleObject );
- void GetCodeCompleteDataFromParse(CodeCompleteDataCache& aCache);
+ bool createCOMWrapperForIface( ::com::sun::star::uno::Any& o_rRetAny, SbClassModuleObject* pProxyClassModuleObject );
+ void GetCodeCompleteDataFromParse(CodeCompleteDataCache& aCache);
SbxArrayRef GetMethods() { return pMethods;}
OUString GetKeywordCase( const OUString& sKeyword ) const;
};
diff --git a/include/basic/sbxcore.hxx b/include/basic/sbxcore.hxx
index 12de6e03057f..98f984196dd6 100644
--- a/include/basic/sbxcore.hxx
+++ b/include/basic/sbxcore.hxx
@@ -84,13 +84,13 @@ public:
virtual SbxDataType GetType() const;
virtual SbxClassType GetClass() const;
- virtual void Clear();
+ virtual void Clear();
static SbxBase* Load( SvStream& );
static void Skip( SvStream& );
bool Store( SvStream& );
virtual bool LoadCompleted();
- bool StoreCompleted();
+ bool StoreCompleted();
static SbxError GetError();
static void SetError( SbxError );