[Libreoffice-commits] core.git: vcl/inc

Chris Sherlock chris.sherlock79 at gmail.com
Wed Jan 27 03:01:30 PST 2016


 vcl/inc/image.h |   13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

New commits:
commit 4c0f3c2b7ad62f7085ec889d22bc0b265941ea23
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
Date:   Wed Jan 27 22:00:31 2016 +1100

    vcl: add in vector header to vcl/inc/image.h
    
    Change-Id: I7e060bd945290cfadd101d35a6d6570945a181ce

diff --git a/vcl/inc/image.h b/vcl/inc/image.h
index aa5eae3..9ab275a 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 );


More information about the Libreoffice-commits mailing list