diff options
author | Samuel Rødal <sroedal@trolltech.com> | 2009-11-03 11:11:50 (GMT) |
---|---|---|
committer | Samuel Rødal <sroedal@trolltech.com> | 2009-11-03 12:20:49 (GMT) |
commit | 0a24f29a0f53716f9c9e000f5bb55ac5d925df5c (patch) | |
tree | ed92f1fbd44835b2dfdac23596a34cde81ddf50e /src/gui/painting | |
parent | 6ec05db9b819a23ebac5a5908b8e3ca56b251e28 (diff) | |
download | Qt-0a24f29a0f53716f9c9e000f5bb55ac5d925df5c.zip Qt-0a24f29a0f53716f9c9e000f5bb55ac5d925df5c.tar.gz Qt-0a24f29a0f53716f9c9e000f5bb55ac5d925df5c.tar.bz2 |
Fixed some compiler warnings.
Reviewed-by: Trond
Diffstat (limited to 'src/gui/painting')
-rw-r--r-- | src/gui/painting/qpainterpath_p.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/gui/painting/qpainterpath_p.h b/src/gui/painting/qpainterpath_p.h index 112c2bd..54b9392 100644 --- a/src/gui/painting/qpainterpath_p.h +++ b/src/gui/painting/qpainterpath_p.h @@ -132,10 +132,9 @@ public: QPainterPathData() : cStart(0), fillRule(Qt::OddEvenFill), - pathConverter(0), dirtyBounds(false), - dirtyControlBounds(false) - + dirtyControlBounds(false), + pathConverter(0) { ref = 1; require_moveTo = false; @@ -146,10 +145,10 @@ public: QPainterPathPrivate(), cStart(other.cStart), fillRule(other.fillRule), bounds(other.bounds), controlBounds(other.controlBounds), - pathConverter(0), dirtyBounds(other.dirtyBounds), dirtyControlBounds(other.dirtyControlBounds), - convex(other.convex) + convex(other.convex), + pathConverter(0) { ref = 1; require_moveTo = false; |