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 :)