[Webkit-unassigned] [Bug 38598] [Qt] Failed at http://philip.html5.org/tests/canvas/suite/tests/2d.path.arcTo.transformation.html

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu May 6 07:23:57 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=38598





--- Comment #8 from Kenneth Rohde Christiansen <kenneth at webkit.org>  2010-05-06 07:23:57 PST ---
(From update of attachment 55230)
     } else {
         m_path =
qTransform.map(m_path);WebCore/platform/graphics/qt/PathQt.cpp:427
     }

This is wrong coding style; should not have braces.

WebCore/platform/graphics/qt/PathQt.cpp:420
 +              QPainterPath::Element &e = (QPainterPath::Element
&)m_path.elementAt(i);
& is aligned wrongly. Should be QPainterPath::Element& e =
(QPainterPath::Element&) m_path.elementAt(i);

And also we dis-encourage C style casts.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list