diff options
Diffstat (limited to 'basic/source/basmgr/basmgr.cxx')
-rw-r--r-- | basic/source/basmgr/basmgr.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx index c0826c629d73..733e4693356c 100644 --- a/basic/source/basmgr/basmgr.cxx +++ b/basic/source/basmgr/basmgr.cxx @@ -389,7 +389,6 @@ private: sal_Bool bDoLoad; sal_Bool bReference; sal_Bool bPasswordVerified; - sal_Bool bFoundInPath; // Must not relativated again! // Lib represents library in new UNO library container Reference< XLibraryContainer > mxScriptCont; @@ -431,9 +430,6 @@ public: sal_Bool IsPasswordVerified() const { return bPasswordVerified; } void SetPasswordVerified() { bPasswordVerified = sal_True; } - sal_Bool IsFoundInPath() const { return bFoundInPath; } - void SetFoundInPath( sal_Bool bInPath ) { bFoundInPath = bInPath; } - static BasicLibInfo* Create( SotStorageStream& rSStream ); Reference< XLibraryContainer > GetLibraryContainer( void ) @@ -534,7 +530,6 @@ BasicLibInfo::BasicLibInfo() bReference = sal_False; bPasswordVerified = sal_False; bDoLoad = sal_False; - bFoundInPath = sal_False; mxScriptCont = NULL; aStorageName = rtl::OUString(szImbedded); aRelStorageName = rtl::OUString(szImbedded); @@ -895,7 +890,6 @@ void BasicManager::LoadBasicManager( SotStorage& rStorage, const String& rBaseUR if( aPathCFG.SearchFile( aSearchFile, SvtPathOptions::PATH_BASIC ) ) { pInfo->SetStorageName( aSearchFile ); - pInfo->SetFoundInPath( sal_True ); } } } |