summaryrefslogtreecommitdiff
path: root/include/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-11 08:57:51 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-12 11:18:50 +0000
commita70a62c013318b45eb23d6451d442bc6f702a282 (patch)
treed99d300392946cf0c2dc0a1df6f4c36baf85f438 /include/svx
parentd2f5da94188a7db8a5815130caadaccd806a1826 (diff)
silence coverity#1371305 Missing move assignment operator
Change-Id: I761e07d1583262d83074addbff4ca67b01640387
Diffstat (limited to 'include/svx')
-rw-r--r--include/svx/xbitmap.hxx2
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;