summaryrefslogtreecommitdiff
path: root/basic/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-25 11:08:08 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-25 16:17:07 +0100
commit6854bd6b9ed13277a11ae495d9ce47eb197ba754 (patch)
tree157e29ad33f76724b114dfda0fb82ed959ab7ccb /basic/source
parentdb3d23ff9eaf57279a515730429cce8684e03c65 (diff)
These DbgOutf calls do not seem worth keeping
Change-Id: I6da5848ee2d1d23f921e56ac2eae09c6f148ebbd
Diffstat (limited to 'basic/source')
-rw-r--r--basic/source/sbx/sbxvar.cxx25
1 files changed, 0 insertions, 25 deletions
diff --git a/basic/source/sbx/sbxvar.cxx b/basic/source/sbx/sbxvar.cxx
index 3b7b0807e228..4c8f98084e67 100644
--- a/basic/source/sbx/sbxvar.cxx
+++ b/basic/source/sbx/sbxvar.cxx
@@ -34,10 +34,6 @@ using namespace com::sun::star::uno;
TYPEINIT1(SbxVariable,SbxValue)
TYPEINIT1(SbxHint,SfxSimpleHint)
-#ifdef DBG_UTIL
-static sal_uIntPtr nVar = 0;
-#endif
-
///////////////////////////// SbxVariableImpl
class SbxVariableImpl
@@ -68,9 +64,6 @@ SbxVariable::SbxVariable() : SbxValue()
pParent = NULL;
nUserData = 0;
nHash = 0;
-#ifdef DBG_UTIL
- DbgOutf( "SbxVariable::Ctor %lx=%ld", (void*)this, ++nVar );
-#endif
}
void registerComListenerVariableForBasic( SbxVariable* pVar, StarBASIC* pBasic );
@@ -106,13 +99,6 @@ SbxVariable::SbxVariable( const SbxVariable& r )
nUserData = 0;
nHash = 0;
}
-#ifdef DBG_UTIL
- if ( maName.equalsAscii( "Cells"))
- {
- maName = "Cells";
- }
- DbgOutf( "SbxVariable::Ctor %lx=%ld", (void*)this, ++nVar );
-#endif
}
SbxVariable::SbxVariable( SbxDataType t, void* p ) : SbxValue( t, p )
@@ -122,23 +108,12 @@ SbxVariable::SbxVariable( SbxDataType t, void* p ) : SbxValue( t, p )
pParent = NULL;
nUserData = 0;
nHash = 0;
-#ifdef DBG_UTIL
- DbgOutf( "SbxVariable::Ctor %lx=%ld", (void*)this, ++nVar );
-#endif
}
void removeDimAsNewRecoverItem( SbxVariable* pVar );
SbxVariable::~SbxVariable()
{
-#ifdef DBG_UTIL
- OString aBStr(OUStringToOString(maName, RTL_TEXTENCODING_ASCII_US));
- DbgOutf( "SbxVariable::Dtor %lx (%s)", (void*)this, aBStr.getStr() );
- if ( maName.equalsAscii( "Cells"))
- {
- maName = "Cells";
- }
-#endif
#ifndef DISABLE_SCRIPTING
if( IsSet( SBX_DIM_AS_NEW ))
{