Kaydet (Commit) 71c1de8f authored tarafından Takeshi Abe's avatar Takeshi Abe

Remove unused member variable

Its reference through IsFoundInPath() was dropped at 4c3f33d8

Change-Id: I764808d8a59089a05eccedd297a61aa6e76b01e0
üst 6ce769a1
......@@ -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 );
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment