svgtopt/SVG/SVGEngine/src/SVGContentHandler.cpp
changeset 19 df65ec4f2d28
parent 2 0c844a8549ae
child 21 4c62338e03c8
--- a/svgtopt/SVG/SVGEngine/src/SVGContentHandler.cpp	Fri Apr 16 15:55:53 2010 +0300
+++ b/svgtopt/SVG/SVGEngine/src/SVGContentHandler.cpp	Mon May 03 13:22:17 2010 +0300
@@ -26,7 +26,7 @@
 
 #include "SVGUseElementImpl.h"
 #include "SVGAnimationElementImpl.h"
-#include "rxmlreader.h"
+#include "RXMLReader.h"
 
 #include "SVGPaintCssValueImpl.h"
 #include "SVGPathElementImpl.h"
@@ -1434,9 +1434,14 @@
         CleanupStack::PopAndDestroy( 1 ); // tBufC2
         }
 
-        iCurrentElement->SetTransform(KTransform,tPf);
-
-    CleanupStack::PopAndDestroy( 2 ); // tBufC & TFinal
+        TBool rVal = iCurrentElement->SetTransform(KTransform,tPf);
+        CleanupStack::PopAndDestroy( 2 ); // tBufC & TFinal
+                
+        if (!rVal)
+        {
+            return EFalse;
+        }
+
     return ETrue;
     }