summaryrefslogtreecommitdiff
path: root/framework/inc/xml/imagesconfiguration.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/inc/xml/imagesconfiguration.hxx')
-rw-r--r--framework/inc/xml/imagesconfiguration.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/inc/xml/imagesconfiguration.hxx b/framework/inc/xml/imagesconfiguration.hxx
index bcaedb3ed6cc..a79d9c9b8c73 100644
--- a/framework/inc/xml/imagesconfiguration.hxx
+++ b/framework/inc/xml/imagesconfiguration.hxx
@@ -61,7 +61,7 @@ typedef boost::ptr_vector<ExternalImageItemDescriptor> ExternalImageItemListDesc
struct ImageListItemDescriptor
{
ImageListItemDescriptor() : nMaskMode( ImageMaskMode_Color ),
- pImageItemList( 0 ) {}
+ pImageItemList( nullptr ) {}
~ImageListItemDescriptor() { delete pImageItemList; }
@@ -78,8 +78,8 @@ typedef boost::ptr_vector<ImageListItemDescriptor> ImageListDescriptor;
struct ImageListsDescriptor
{
- ImageListsDescriptor() : pImageList( 0 ),
- pExternalImageList( 0 ) {}
+ ImageListsDescriptor() : pImageList( nullptr ),
+ pExternalImageList( nullptr ) {}
~ImageListsDescriptor() { delete pImageList; delete pExternalImageList; }
ImageListDescriptor* pImageList;