diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-20 11:39:51 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-20 11:39:51 +0200 |
commit | a55e5389a84542768568acc7fd69af20e3fe0745 (patch) | |
tree | 1e031b477f3d2753d04bfcd6bd34ecc1c6a2ba6a /sot | |
parent | cf22f6d1e123d7a5f8b5ef74925192172bf6da4a (diff) |
this field should be std::unique_ptr to sal_uInt8[], not sal_uInt8
Change-Id: Ia4ca8693e7c89a23ccbf2e71261c072dd6f8affa
Diffstat (limited to 'sot')
-rw-r--r-- | sot/source/sdstor/stgcache.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sot/source/sdstor/stgcache.hxx b/sot/source/sdstor/stgcache.hxx index 59649023cc0c..14942e35a760 100644 --- a/sot/source/sdstor/stgcache.hxx +++ b/sot/source/sdstor/stgcache.hxx @@ -96,7 +96,7 @@ public: class StgPage : public salhelper::SimpleReferenceObject { const sal_Int32 mnPage; // page index - std::unique_ptr<sal_uInt8> + std::unique_ptr<sal_uInt8[]> mpData; // nSize bytes short mnSize; // size of this page StgPage( short nData, sal_Int32 nPage ); |