From 1ee51feb00157bb5e477116c48dc0d14d3078226 Mon Sep 17 00:00:00 2001 From: dirk Date: Fri, 26 Dec 2014 00:16:31 +0000 Subject: [PATCH] Fixed usage of incorrect quotes. --- Magick++/lib/Geometry.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; -- 2.40.0