summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-02-16 22:39:13 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-05-10 02:39:06 +0200
commitf2814ac645f0e35d51c1cfc48fb84dbf68f8b4dc (patch)
treeda8a9862400a6fd8198178a40ac4e17a5e8f65ba /vcl
parent828221dd980d4243788a1cab251e1c901a696d44 (diff)
Work around problem with boost::shared_array(NULL) ctor and Boost 1.53.0
...claiming template<class Y> boost::shared_array<T>::shared_array(Y*) is not a viable option due to mismatched types 'Y*' and 'long int' Change-Id: I8db321cd25cd73c84fa2a3124c9ec1018c131d5f (cherry picked from commit b62048701cea5024383e19314592f2edcd9810fd) Signed-off-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/svgdata.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/svgdata.cxx b/vcl/source/gdi/svgdata.cxx
index f98abcdc1e55..4d15ec392f0b 100644
--- a/vcl/source/gdi/svgdata.cxx
+++ b/vcl/source/gdi/svgdata.cxx
@@ -166,7 +166,7 @@ SvgData::SvgData(const SvgDataArray& rSvgDataArray, sal_uInt32 nSvgDataArrayLeng
//////////////////////////////////////////////////////////////////////////////
SvgData::SvgData(const OUString& rPath):
- maSvgDataArray(NULL),
+ maSvgDataArray(),
mnSvgDataArrayLength(0),
maPath(rPath),
maRange(),