From kde-commits Wed Oct 31 22:58:44 2001 From: Nikolas Zimmermann Date: Wed, 31 Oct 2001 22:58:44 +0000 To: kde-commits Subject: kdenonbeta/ksvg/impl X-MARC-Message: https://marc.info/?l=kde-commits&m=100456913601993 kdenonbeta/ksvg/impl SVGShapeImpl.cc,1.26,1.27 SVGStylableImpl.cc,1.21,1.22 Author: wildfox Wed Oct 31 22:58:34 UTC 2001 Modified Files: SVGShapeImpl.cc SVGStylableImpl.cc Log Message: Fixing logic [radgrad01.svg at least shows up the non-yet-working gradient] - value = attr.item(i).nodeValue().string().lower(); + value = attr.item(i).nodeValue().string(); - value = attr.item(i).nodeValue().string().lower(); + value = attr.item(i).nodeValue().string(); The name should be .lower()'ed, correct but NOT the value the problem with radgrad01.svg was: We hashed the -> SVGShapeImpl * but then we tried to look it up in the map with "MyGradient" -> which failed works now :)