summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/scene3dcontext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/drawingml/scene3dcontext.cxx')
-rw-r--r--oox/source/drawingml/scene3dcontext.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/oox/source/drawingml/scene3dcontext.cxx b/oox/source/drawingml/scene3dcontext.cxx
index 2514d8f348b6..5af3b83a93dd 100644
--- a/oox/source/drawingml/scene3dcontext.cxx
+++ b/oox/source/drawingml/scene3dcontext.cxx
@@ -63,9 +63,9 @@ ContextHandlerRef Scene3DPropertiesContext::onCreateContext( sal_Int32 aElementT
case A_TOKEN( backdrop ):
case A_TOKEN( extLst ):
- return 0; // TODO: later (backdrop is not supported by core anyway)
+ return nullptr; // TODO: later (backdrop is not supported by core anyway)
}
- return 0;
+ return nullptr;
}
Shape3DPropertiesContext::Shape3DPropertiesContext( ContextHandler2Helper& rParent, const AttributeList& rAttribs, Shape3DProperties& r3DProperties ) throw()
@@ -110,7 +110,7 @@ ContextHandlerRef Shape3DPropertiesContext::onCreateContext( sal_Int32 aElementT
case A_TOKEN( contourClr ):
return new ColorContext( *this, mr3DProperties.maContourColor );
}
- return 0;
+ return nullptr;
}
Scene3DRotationPropertiesContext::Scene3DRotationPropertiesContext( ContextHandler2Helper& rParent, RotationProperties& rRotationProperties ) throw()
@@ -129,7 +129,7 @@ ContextHandlerRef Scene3DRotationPropertiesContext::onCreateContext( sal_Int32 a
mrRotationProperties.mnRevolution = rAttribs.getInteger( XML_rev, 0 );
break;
}
- return 0;
+ return nullptr;
}
} }