OSDN Git Service

QPainterPathData cleanup
authorIvailo Monev <xakepa10@laimg.moc>
Sat, 13 Jul 2019 21:24:15 +0000 (21:24 +0000)
committerIvailo Monev <xakepa10@laimg.moc>
Sat, 13 Jul 2019 21:24:15 +0000 (21:24 +0000)
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
src/gui/painting/qpainterpath_p.h

index faf0264..f7b311f 100644 (file)
@@ -173,10 +173,10 @@ public:
     QRectF bounds;
     QRectF controlBounds;
 
-    uint require_moveTo : 1;
-    uint dirtyBounds : 1;
-    uint dirtyControlBounds : 1;
-    uint convex : 1;
+    bool require_moveTo;
+    bool dirtyBounds;
+    bool dirtyControlBounds;
+    bool convex;
 
     QVectorPathConverter *pathConverter;
 };