From: dirk Date: Fri, 26 Dec 2014 00:16:31 +0000 (+0000) Subject: Fixed usage of incorrect quotes. X-Git-Tag: 7.0.1-0~1550 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1ee51feb00157bb5e477116c48dc0d14d3078226;p=imagemagick Fixed usage of incorrect quotes. --- diff --git a/Magick++/lib/Geometry.cpp b/Magick++/lib/Geometry.cpp index dc20ffbbe..08952cbef 100644 --- a/Magick++/lib/Geometry.cpp +++ b/Magick++/lib/Geometry.cpp @@ -583,17 +583,17 @@ Magick::Point::operator std::string() const point; if (_x < 0.0) - point+='-'; + point+="-"; else - point+='+'; + point+="+"; FormatLocaleString(buffer,MaxTextExtent,"%.20g",_x); point+=buffer; if (_y < 0.0) - point+='x-'; + point+="x-"; else - point+='x+'; + point+="x+"; FormatLocaleString(buffer,MaxTextExtent,"%.20g",(double) _y); point+=buffer;