Remove remaining DBG_CTOR etc. remnants from formula

Change-Id: I36740cd276d2047552298606f24b2696ed61b36b
This commit is contained in:
Stephan Bergmann 2014-03-28 15:34:01 +01:00
parent 1f90d06bbb
commit 4b060ce51a
2 changed files with 0 additions and 10 deletions

View File

@ -525,7 +525,6 @@ void FormulaCompiler::OpCodeMap::putOpCode( const OUString & rStr, const OpCode
// class FormulaCompiler
DBG_NAME(FormulaCompiler)
FormulaCompiler::FormulaCompiler( FormulaTokenArray& rArr )
:
pArr( &rArr ),
@ -543,7 +542,6 @@ FormulaCompiler::FormulaCompiler( FormulaTokenArray& rArr )
glSubTotal( false )
{
DBG_CTOR(FormulaCompiler, NULL);
}
FormulaCompiler::FormulaCompiler()
@ -559,12 +557,10 @@ FormulaCompiler::FormulaCompiler()
bIgnoreErrors( false )
{
DBG_CTOR(FormulaCompiler, NULL);
}
FormulaCompiler::~FormulaCompiler()
{
DBG_DTOR(FormulaCompiler, NULL);
}
FormulaCompiler::OpCodeMapPtr FormulaCompiler::GetOpCodeMap( const sal_Int32 nLanguage ) const

View File

@ -54,13 +54,9 @@ public:
ResMgr* getResManager();
};
DBG_NAME( rpt_OModuleImpl )
OModuleImpl::OModuleImpl()
:m_pResources(NULL)
{
DBG_CTOR( rpt_OModuleImpl,NULL);
}
@ -68,8 +64,6 @@ OModuleImpl::~OModuleImpl()
{
if (m_pResources)
delete m_pResources;
DBG_DTOR( rpt_OModuleImpl,NULL);
}