[Libreoffice-commits] core.git: 2 commits - forms/source formula/source
Stephan Bergmann
sbergman at redhat.com
Fri Mar 28 07:34:30 PDT 2014
forms/source/component/GroupManager.cxx | 5 -----
formula/source/core/api/FormulaCompiler.cxx | 4 ----
formula/source/ui/resource/ModuleHelper.cxx | 6 ------
3 files changed, 15 deletions(-)
New commits:
commit 4b060ce51a039e37e24701c46b046fad835d3e0b
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Fri Mar 28 15:34:01 2014 +0100
Remove remaining DBG_CTOR etc. remnants from formula
Change-Id: I36740cd276d2047552298606f24b2696ed61b36b
diff --git a/formula/source/core/api/FormulaCompiler.cxx b/formula/source/core/api/FormulaCompiler.cxx
index d37f8cf..ce36065 100644
--- a/formula/source/core/api/FormulaCompiler.cxx
+++ b/formula/source/core/api/FormulaCompiler.cxx
@@ -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
diff --git a/formula/source/ui/resource/ModuleHelper.cxx b/formula/source/ui/resource/ModuleHelper.cxx
index 57a32c4..7d6de0f 100644
--- a/formula/source/ui/resource/ModuleHelper.cxx
+++ b/formula/source/ui/resource/ModuleHelper.cxx
@@ -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);
}
commit 1f90d06bbb448165cf4eef4235e0af244b2c7329
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Fri Mar 28 15:32:45 2014 +0100
Remove remaining DBG_CTOR etc. remnants from forms
Change-Id: I1616d7e77071caa78ffd8c7d7857f50f3afa1bb7
diff --git a/forms/source/component/GroupManager.cxx b/forms/source/component/GroupManager.cxx
index 1f7c5a3..99c98f4 100644
--- a/forms/source/component/GroupManager.cxx
+++ b/forms/source/component/GroupManager.cxx
@@ -213,14 +213,10 @@ Sequence< Reference<XControlModel> > OGroup::GetControlModels() const
return aControlModelSeq;
}
-DBG_NAME(OGroupManager);
-
OGroupManager::OGroupManager(const Reference< XContainer >& _rxContainer)
:m_pCompGroup( new OGroup( OUString("AllComponentGroup") ) )
,m_xContainer(_rxContainer)
{
- DBG_CTOR(OGroupManager,NULL);
-
increment(m_refCount);
{
_rxContainer->addContainerListener(this);
@@ -230,7 +226,6 @@ OGroupManager::OGroupManager(const Reference< XContainer >& _rxContainer)
OGroupManager::~OGroupManager()
{
- DBG_DTOR(OGroupManager,NULL);
// delete all Components and CompGroup
delete m_pCompGroup;
}
More information about the Libreoffice-commits
mailing list