QPainterPath: Fix copy constructor.

Re-add base class initialization accidentally removed by
e277575987657aa07444eea9bee99769f039d3b0.
Fix warning: 'base class 'class QPainterPathPrivate' should be
explicitly initialized in the copy constructor.

Change-Id: Ie94fa82eeeb3a8ddc69aef447f73ce36da616916
Reviewed-by: Bradley T. Hughes <bradley.hughes@nokia.com>
This commit is contained in:
Friedemann Kleint 2011-11-07 15:38:35 +01:00 committed by Qt by Nokia
parent b2bc9d2762
commit a05270f435

View File

@ -153,7 +153,7 @@ public:
}
QPainterPathData(const QPainterPathData &other) :
cStart(other.cStart), fillRule(other.fillRule),
QPainterPathPrivate(other), cStart(other.cStart), fillRule(other.fillRule),
bounds(other.bounds),
controlBounds(other.controlBounds),
dirtyBounds(other.dirtyBounds),