summaryrefslogtreecommitdiff
path: root/svx/source/outliner/outliner.cxx
diff options
context:
space:
mode:
authorMalte Timmermann <mt@openoffice.org>2002-07-17 09:24:35 +0000
committerMalte Timmermann <mt@openoffice.org>2002-07-17 09:24:35 +0000
commit1f8e96ea5ec9bb435c204678f461bcb1072d69ee (patch)
treec783c97159c2ba2ec0328f6142128d5e6321b24f /svx/source/outliner/outliner.cxx
parentfd1e5c458bff24d8bc1e183b6cbaa1c2a6dcfaad (diff)
#90353# operator delete[]
Diffstat (limited to 'svx/source/outliner/outliner.cxx')
-rw-r--r--svx/source/outliner/outliner.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/outliner/outliner.cxx b/svx/source/outliner/outliner.cxx
index 69d9c645ca..8871096d1a 100644
--- a/svx/source/outliner/outliner.cxx
+++ b/svx/source/outliner/outliner.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: outliner.cxx,v $
*
- * $Revision: 1.45 $
+ * $Revision: 1.46 $
*
- * last change: $Author: mt $ $Date: 2002-07-09 10:17:20 $
+ * last change: $Author: mt $ $Date: 2002-07-17 10:24:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1146,7 +1146,7 @@ void Outliner::PaintBullet( USHORT nPara, const Point& rStartPos,
FontMetric aMetric( pOutDev->GetFontMetric() );
aTextPos.Y() -= aMetric.GetDescent();
DrawingText( aTextPos, pPara->GetText(), 0, pPara->GetText().Len(), pBuf, aSvxFont, nPara, 0xFFFF );
- delete pBuf;
+ delete[] pBuf;
}
pOutDev->SetFont( aOldFont );
}