QPainterPath: Fix copy constructor.
Re-add base class initialization accidentally removed by
e277575987.
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>
bb10
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…
Reference in New Issue