diff options
author | Noel Grandin <noel@peralex.com> | 2012-06-07 14:58:34 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-06-12 23:25:09 +0200 |
commit | 059f0fd3bd6977a9e29a32f5292262b14e8ff679 (patch) | |
tree | 0cda1cdf73c2f3cbbc83683b82489b1fa5e5b348 /framework/inc | |
parent | 78a219e973d2528351f7b850e9b5f58bf37ff0cf (diff) |
Convert SV_DECL_PTRARR_DEL( ImageListDescriptor) to boost::ptr_vector
Change-Id: Iea01a7d7c01bb9da80ccae001157c60d6090348b
Diffstat (limited to 'framework/inc')
-rw-r--r-- | framework/inc/xml/imagesconfiguration.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/inc/xml/imagesconfiguration.hxx b/framework/inc/xml/imagesconfiguration.hxx index 4b2876a38dc6..5a6c2b6d4f43 100644 --- a/framework/inc/xml/imagesconfiguration.hxx +++ b/framework/inc/xml/imagesconfiguration.hxx @@ -40,6 +40,7 @@ #include <com/sun/star/io/XOutputStream.hpp> #include <vector> +#include <boost/ptr_container/ptr_vector.hpp> namespace framework { @@ -86,8 +87,7 @@ struct ImageListItemDescriptor String aHighContrastMaskURL; // an URL to an optional high contrast bitmap as a mask }; -typedef ImageListItemDescriptor* ImageListItemDescriptorPtr; -SV_DECL_PTRARR_DEL( ImageListDescriptor, ImageListItemDescriptorPtr, 10 ) +typedef boost::ptr_vector<ImageListItemDescriptor> ImageListDescriptor; struct ImageListsDescriptor { |