summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdoole2.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-04-09 07:21:20 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-04-09 07:22:55 +0900
commitc70fc41d6b7eb6f56c70b8e85469c5db66837a42 (patch)
treebb95cb099e8930ec77aa4ae0f3ed088fdb8d6435 /svx/source/svdraw/svdoole2.cxx
parent0f9190b1fad6a468a03d13db0345051aef82217a (diff)
deleting NULL is safe
Change-Id: Ief65149bc88ac4ce8badc7dbce818fca0cdcb201
Diffstat (limited to 'svx/source/svdraw/svdoole2.cxx')
-rw-r--r--svx/source/svdraw/svdoole2.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/svx/source/svdraw/svdoole2.cxx b/svx/source/svdraw/svdoole2.cxx
index 3029917c93ba..e3656a4ffa84 100644
--- a/svx/source/svdraw/svdoole2.cxx
+++ b/svx/source/svdraw/svdoole2.cxx
@@ -795,11 +795,9 @@ SdrOle2Obj::~SdrOle2Obj()
if ( mpImpl->mbConnected )
Disconnect();
- if( pGraphic!=NULL )
- delete pGraphic;
+ delete pGraphic;
- if(mpImpl->pGraphicObject!=NULL)
- delete mpImpl->pGraphicObject;
+ delete mpImpl->pGraphicObject;
if(pModifyListener)
{