diff options
Diffstat (limited to 'include/basic')
-rw-r--r-- | include/basic/basmgr.hxx | 4 | ||||
-rw-r--r-- | include/basic/sbmod.hxx | 2 | ||||
-rw-r--r-- | include/basic/sbstar.hxx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/include/basic/basmgr.hxx b/include/basic/basmgr.hxx index fdad8f5e1056..156d6ecaf8b2 100644 --- a/include/basic/basmgr.hxx +++ b/include/basic/basmgr.hxx @@ -138,9 +138,9 @@ protected: void LoadBasicManager( SotStorage& rStorage, const OUString& rBaseURL, bool bLoadBasics = true ); void LoadOldBasicManager( SotStorage& rStorage ); bool ImplLoadBasic( SvStream& rStrm, StarBASICRef& rOldBasic ) const; - bool ImplEncryptStream( SvStream& rStream ) const; + static bool ImplEncryptStream( SvStream& rStream ); BasicLibInfo* FindLibInfo( StarBASIC* pBasic ); - void CheckModules( StarBASIC* pBasic, bool bReference ) const; + static void CheckModules( StarBASIC* pBasic, bool bReference ); virtual ~BasicManager(); public: diff --git a/include/basic/sbmod.hxx b/include/basic/sbmod.hxx index 5aaafa73ea3b..9f2a5d82af03 100644 --- a/include/basic/sbmod.hxx +++ b/include/basic/sbmod.hxx @@ -137,7 +137,7 @@ public: 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; + static OUString GetKeywordCase( const OUString& sKeyword ); }; typedef tools::SvRef<SbModule> SbModuleRef; diff --git a/include/basic/sbstar.hxx b/include/basic/sbstar.hxx index 105bf944c419..327027bee041 100644 --- a/include/basic/sbstar.hxx +++ b/include/basic/sbstar.hxx @@ -109,7 +109,7 @@ public: SbModule* MakeModule( const OUString& rName, const OUString& rSrc ); SbModule* MakeModule32( const OUString& rName, const OUString& rSrc ); SbModule* MakeModule32( const OUString& rName, const com::sun::star::script::ModuleInfo& mInfo, const OUString& rSrc ); - bool Compile( SbModule* ); + static bool Compile( SbModule* ); static void Stop(); static void Error( SbError ); static void Error( SbError, const OUString& rMsg ); |