# HG changeset patch # User Dremov Kirill (Nokia-D-MSW/Tampere) # Date 1268649810 -7200 # Node ID 81aabfdef1e5d0f330fd2dd80c162c061107bc3d # Parent baacd33d915bffd576756a49159046a2d62fac6a Revision: 201010 Kit: 201010 diff -r baacd33d915b -r 81aabfdef1e5 svgtopt/SVG/SVGImpl/src/SVGElementImpl.cpp --- a/svgtopt/SVG/SVGImpl/src/SVGElementImpl.cpp Fri Mar 12 15:47:00 2010 +0200 +++ b/svgtopt/SVG/SVGImpl/src/SVGElementImpl.cpp Mon Mar 15 12:43:30 2010 +0200 @@ -2312,7 +2312,8 @@ { //tParentValue = (CIntCssValueImpl *)(lParentElement->iSvgStyleProperties->operator[](aNameId)); //(*iSvgStyleProperties)[aNameId]= tParentValue; - tValue->SetValueL(tParentValue->Value()); + if(tParentValue) + tValue->SetValueL(tParentValue->Value()); } else { diff -r baacd33d915b -r 81aabfdef1e5 svgtopt/SVGTPlugin/src/SvgtPluginControl.cpp --- a/svgtopt/SVGTPlugin/src/SvgtPluginControl.cpp Fri Mar 12 15:47:00 2010 +0200 +++ b/svgtopt/SVGTPlugin/src/SvgtPluginControl.cpp Mon Mar 15 12:43:30 2010 +0200 @@ -527,6 +527,7 @@ iXPosAtMouseDown = iPointerX; iYPosAtMouseDown = iPointerY; iPlugin->iSvgModule->MouseMove( iPointerX, iPointerY ); + User::After(10); DrawNow(); } }