diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-27 22:00:31 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-27 22:00:31 +1100 |
commit | 4c0f3c2b7ad62f7085ec889d22bc0b265941ea23 (patch) | |
tree | 228fae44c7779b31c9d9e9198ba8ac90eae0b86f /vcl/inc/image.h | |
parent | f93105917f71866a42e1a26b35f3b1d7b134a547 (diff) |
vcl: add in vector header to vcl/inc/image.h
Change-Id: I7e060bd945290cfadd101d35a6d6570945a181ce
Diffstat (limited to 'vcl/inc/image.h')
-rw-r--r-- | vcl/inc/image.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/vcl/inc/image.h b/vcl/inc/image.h index aa5eae355546..9ab275a5e6ec 100644 --- a/vcl/inc/image.h +++ b/vcl/inc/image.h @@ -23,13 +23,14 @@ #include <vcl/bitmapex.hxx> #include <unordered_map> +#include <vector> struct ImageAryData { OUString maName; // Images identified by either name, or by id - sal_uInt16 mnId; - BitmapEx maBitmapEx; + sal_uInt16 mnId; + BitmapEx maBitmapEx; ImageAryData( const OUString &aName, sal_uInt16 nId, const BitmapEx &aBitmap ); @@ -48,11 +49,11 @@ struct ImplImageList typedef std::unordered_map< OUString, ImageAryData *, OUStringHash > ImageAryDataNameHash; - ImageAryDataVec maImages; - ImageAryDataNameHash maNameHash; + ImageAryDataVec maImages; + ImageAryDataNameHash maNameHash; OUString maPrefix; - Size maImageSize; - sal_uIntPtr mnRefCount; + Size maImageSize; + sal_uIntPtr mnRefCount; ImplImageList(); ImplImageList( const ImplImageList &aSrc ); |