summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorDavid Ostrovsky <david@ostrovsky.org>2012-10-25 21:02:50 +0200
committerMichael Stahl <mstahl@redhat.com>2012-10-28 18:09:02 +0000
commit9e716494a8f7a1ffbfd519ffc388df0226f4046f (patch)
tree99e4fdb269c6d0ea2d8082b88fabc59713062b28 /filter
parent1d1bab408421030cb260d67a519d478db87bdff5 (diff)
fix some VS 2010 specific issues
Change-Id: Iae27a96c1e2ed72d2744fcbe100d6ada7dc41c82 Reviewed-on: https://gerrit.libreoffice.org/914 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/svgreader.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/svg/svgreader.cxx b/filter/source/svg/svgreader.cxx
index 147f3f3b71c9..ecbc844c60b5 100644
--- a/filter/source/svg/svgreader.cxx
+++ b/filter/source/svg/svgreader.cxx
@@ -1168,7 +1168,7 @@ struct AnnotatingVisitor
const ARGBColor& rInheritColor,
const Gradient& rInheritGradient )
{
- std::pair<const char*,const char*> aPaintUri(NULL,NULL);
+ std::pair<const char*,const char*> aPaintUri((const char*)NULL,(const char*)NULL);
std::pair<ARGBColor,bool> aColor(maCurrState.maCurrentColor,
false);
if( strcmp(sValue,"none") == 0 )