summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-08-27 15:52:30 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-08-28 00:20:47 +0900
commit6ce769a1ad4fdbd0583cd0f81d7e5a06277338e8 (patch)
treef4818069d146749eab5999a0e51d14bb701880e0 /basic
parentf5b7fecbc0744e46468d57b8131ea7d768aa96a2 (diff)
Remove useless member variable
Its usage was died at ac25ae2544969f57b0c3d51a7ee9e3eb047a8915 Change-Id: Ic98a0c36ceb02259b4f3b890f5ea701e56adbb68
Diffstat (limited to 'basic')
-rw-r--r--basic/source/basmgr/basmgr.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx
index e8ee8bfd579f..c0826c629d73 100644
--- a/basic/source/basmgr/basmgr.cxx
+++ b/basic/source/basmgr/basmgr.cxx
@@ -116,13 +116,11 @@ struct BasicManagerImpl
SvMemoryStream* mpManagerStream;
SvMemoryStream** mppLibStreams;
sal_Int32 mnLibStreamCount;
- sal_Bool mbError;
BasicManagerImpl( void )
: mpManagerStream( NULL )
, mppLibStreams( NULL )
, mnLibStreamCount( 0 )
- , mbError( sal_False )
{}
~BasicManagerImpl();
};
@@ -659,8 +657,6 @@ BasicManager::BasicManager( SotStorage& rStorage, const String& rBaseURL, StarBA
*static_cast<SvStream*>(&xBasicStream) >> *( mpImpl->mppLibStreams[nL] );
}
}
- else
- mpImpl->mbError = sal_True;
}
else
{