diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-11 08:57:51 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-12 11:18:50 +0000 |
commit | a70a62c013318b45eb23d6451d442bc6f702a282 (patch) | |
tree | d99d300392946cf0c2dc0a1df6f4c36baf85f438 /include/svx | |
parent | d2f5da94188a7db8a5815130caadaccd806a1826 (diff) |
silence coverity#1371305 Missing move assignment operator
Change-Id: I761e07d1583262d83074addbff4ca67b01640387
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/xbitmap.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/xbitmap.hxx b/include/svx/xbitmap.hxx index 0a2128e3d1a8..761e8e1b1861 100644 --- a/include/svx/xbitmap.hxx +++ b/include/svx/xbitmap.hxx @@ -30,7 +30,7 @@ class SVX_DLLPUBLIC XOBitmap { private: XBitmapType eType; - GraphicObject aGraphicObject; + std::unique_ptr<GraphicObject> xGraphicObject; sal_uInt16* pPixelArray; Size aArraySize; Color aPixelColor; |