summaryrefslogtreecommitdiff
path: root/svx/source/xoutdev
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2014-03-02 15:12:20 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-03-03 09:32:48 -0600
commit7a5f564a799b8654b81454005f4887c6dc774ef0 (patch)
tree623b8ac8b9ee10b4c558328c3d2c975ecd7c5c73 /svx/source/xoutdev
parent93aff251a3f7f648d532c3818f0419d43958ab64 (diff)
SVX : Remove usage of DBG_CTOR and DBG_DTOR.
Valgrind is capable of detecting such bugs. No need for extra macros. Change-Id: I9f2ab3703feb5c49a831da124e161f98cb1bb3ab Reviewed-on: https://gerrit.libreoffice.org/8419 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx/source/xoutdev')
-rw-r--r--svx/source/xoutdev/_xpoly.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/svx/source/xoutdev/_xpoly.cxx b/svx/source/xoutdev/_xpoly.cxx
index a0f6f932f9cf..6a9668508b1e 100644
--- a/svx/source/xoutdev/_xpoly.cxx
+++ b/svx/source/xoutdev/_xpoly.cxx
@@ -33,8 +33,6 @@
#include <basegfx/range/b2drange.hxx>
#include <basegfx/numeric/ftools.hxx>
-DBG_NAME(XPolygon);
-DBG_NAME(XPolyPolygon);
ImpXPolygon::ImpXPolygon( sal_uInt16 nInitSize, sal_uInt16 _nResize )
{
@@ -190,13 +188,11 @@ void ImpXPolygon::Remove( sal_uInt16 nPos, sal_uInt16 nCount )
XPolygon::XPolygon( sal_uInt16 nSize, sal_uInt16 nResize )
{
- DBG_CTOR(XPolygon,NULL);
pImpXPolygon = new ImpXPolygon( nSize, nResize );
}
XPolygon::XPolygon( const XPolygon& rXPoly )
{
- DBG_CTOR(XPolygon,NULL);
pImpXPolygon = rXPoly.pImpXPolygon;
pImpXPolygon->nRefCount++;
}
@@ -204,7 +200,6 @@ XPolygon::XPolygon( const XPolygon& rXPoly )
/// create a XPolygon out of a standard polygon
XPolygon::XPolygon( const Polygon& rPoly )
{
- DBG_CTOR(XPolygon,NULL);
sal_uInt16 nSize = rPoly.GetSize();
pImpXPolygon = new ImpXPolygon( nSize );
@@ -220,7 +215,6 @@ XPolygon::XPolygon( const Polygon& rPoly )
/// create a rectangle (also with rounded corners) as a Bézier polygon
XPolygon::XPolygon(const Rectangle& rRect, long nRx, long nRy)
{
- DBG_CTOR(XPolygon,NULL);
pImpXPolygon = new ImpXPolygon(17);
long nWh = (rRect.GetWidth() - 1) / 2;
long nHh = (rRect.GetHeight() - 1) / 2;
@@ -282,7 +276,6 @@ XPolygon::XPolygon(const Rectangle& rRect, long nRx, long nRy)
XPolygon::XPolygon(const Point& rCenter, long nRx, long nRy,
sal_uInt16 nStartAngle, sal_uInt16 nEndAngle, sal_Bool bClose)
{
- DBG_CTOR(XPolygon,NULL);
pImpXPolygon = new ImpXPolygon(17);
nStartAngle %= 3600;
@@ -322,7 +315,6 @@ XPolygon::XPolygon(const Point& rCenter, long nRx, long nRy,
XPolygon::~XPolygon()
{
- DBG_DTOR(XPolygon,NULL);
if( pImpXPolygon->nRefCount > 1 )
pImpXPolygon->nRefCount--;
else
@@ -877,7 +869,6 @@ XPolygon::XPolygon(const basegfx::B2DPolygon& rPolygon)
// #i74631# use tools Polygon class for conversion to not have the code doubled
// here. This needs one more conversion but avoids different convertors in
// the long run
- DBG_CTOR(XPolygon,NULL);
const Polygon aSource(rPolygon);
sal_uInt16 nSize = aSource.GetSize();
@@ -926,20 +917,17 @@ bool ImpXPolyPolygon::operator==(const ImpXPolyPolygon& rImpXPolyPoly) const
XPolyPolygon::XPolyPolygon( sal_uInt16 /*nInitSize*/, sal_uInt16 /*nResize*/ )
{
- DBG_CTOR(XPolyPolygon,NULL);
pImpXPolyPolygon = new ImpXPolyPolygon();
}
XPolyPolygon::XPolyPolygon( const XPolyPolygon& rXPolyPoly )
{
- DBG_CTOR(XPolyPolygon,NULL);
pImpXPolyPolygon = rXPolyPoly.pImpXPolyPolygon;
pImpXPolyPolygon->nRefCount++;
}
XPolyPolygon::~XPolyPolygon()
{
- DBG_DTOR(XPolyPolygon,NULL);
if( pImpXPolyPolygon->nRefCount > 1 )
pImpXPolyPolygon->nRefCount--;
else
@@ -1107,7 +1095,6 @@ basegfx::B2DPolyPolygon XPolyPolygon::getB2DPolyPolygon() const
XPolyPolygon::XPolyPolygon(const basegfx::B2DPolyPolygon& rPolyPolygon)
{
- DBG_CTOR(XPolyPolygon,NULL);
pImpXPolyPolygon = new ImpXPolyPolygon();
for(sal_uInt32 a(0L); a < rPolyPolygon.count(); a++)