summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-08-27 16:34:19 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-08-28 00:20:47 +0900
commit71c1de8f01d10197226a4d8a441089dee879b3cb (patch)
tree7e166cdc10bdc12b6651881ed70f969c2c525769
parent6ce769a1ad4fdbd0583cd0f81d7e5a06277338e8 (diff)
Remove unused member variable
Its reference through IsFoundInPath() was dropped at 4c3f33d8d54756d3988c4d4c848712b31027f919 Change-Id: I764808d8a59089a05eccedd297a61aa6e76b01e0
-rw-r--r--basic/source/basmgr/basmgr.cxx6
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 );
}
}
}