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:
parent
b2bc9d2762
commit
a05270f435
@ -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),
|
||||
|
Loading…
x
Reference in New Issue
Block a user