diff options
author | Julien Chaffraix <julien.chaffraix@gmail.com> | 2011-11-13 22:35:28 -0800 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2011-11-15 10:41:35 +0000 |
commit | e5f5167e848237e7ca4cfc00fa916d07f8b73f1a (patch) | |
tree | 49beded082dbed8872c022fab167f31c7c6f8815 /basic/source/sbx/sbxvar.cxx | |
parent | 57ecb72e86f68aaea06053d71b1063264a0aa140 (diff) |
FDO#39446 [EasyHack] Bloat Removal. Removing uncallable code with callcatcher
Removed most unused symbols in basic/. The remaining symbols (SdxDecimal) are
Windows specific and thus should be double-checked on a Windows machine prior
to removal.
Diffstat (limited to 'basic/source/sbx/sbxvar.cxx')
-rw-r--r-- | basic/source/sbx/sbxvar.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/basic/source/sbx/sbxvar.cxx b/basic/source/sbx/sbxvar.cxx index f70cb39807d8..457ae4f568d9 100644 --- a/basic/source/sbx/sbxvar.cxx +++ b/basic/source/sbx/sbxvar.cxx @@ -590,16 +590,6 @@ SbxInfo::SbxInfo( const String& r, sal_uInt32 n ) ////////////////////////////// SbxAlias ////////////////////////////////// -SbxAlias::SbxAlias( const XubString& rName, SbxVariable* p ) - : SbxVariable(), xAlias( p ) -{ - SetName( rName ); - SetFlags( p->GetFlags() ); - SetFlag( SBX_DONTSTORE ); - aData.eType = p->GetType(); - StartListening( p->GetBroadcaster() ); -} - SbxAlias::SbxAlias( const SbxAlias& r ) : SvRefBase( r ), SbxVariable( r ), SfxListener( r ), xAlias( r.xAlias ) |