summaryrefslogtreecommitdiff
path: root/vcl/inc/image.h
diff options
context:
space:
mode:
authorMark Page <aptitude@btconnect.com>2016-06-09 15:53:20 +0100
committerNoel Grandin <noelgrandin@gmail.com>2016-06-10 07:25:59 +0000
commit99200d7cc2a952f92074934c647db076aae5e48b (patch)
tree31fe35cd3e7997f116d64235913c41c958a34ea7 /vcl/inc/image.h
parentfc7e6d8445af39ffc6a753d7104167ee8f376b9c (diff)
tdf#96099 Remove various smart pointer typedefs in vcl
Change-Id: I4ac1bb25d3d63f150b42d9e1708efc344bbdb6a7 Reviewed-on: https://gerrit.libreoffice.org/26113 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/inc/image.h')
-rw-r--r--vcl/inc/image.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/inc/image.h b/vcl/inc/image.h
index 9ab275a5e6ec..f737a14a8d9b 100644
--- a/vcl/inc/image.h
+++ b/vcl/inc/image.h
@@ -45,11 +45,10 @@ struct ImageAryData
struct ImplImageList
{
- typedef std::vector<ImageAryData *> ImageAryDataVec;
typedef std::unordered_map< OUString, ImageAryData *, OUStringHash >
ImageAryDataNameHash;
- ImageAryDataVec maImages;
+ std::vector<ImageAryData *> maImages;
ImageAryDataNameHash maNameHash;
OUString maPrefix;
Size maImageSize;