summaryrefslogtreecommitdiff
path: root/include/basic/sbmod.hxx
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/sbmod.hxx
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/sbmod.hxx')
-rw-r--r--include/basic/sbmod.hxx20
1 files changed, 10 insertions, 10 deletions
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;
};