Commit 1bc082b91cd67a1d110e89e10ab33a2853ebf19c

Authored by Scott Klum
1 parent abced759

Variable type fix

openbr/plugins/imgproc/rndrotate.cpp
@@ -37,7 +37,7 @@ class RndRotateTransform : public UntrainableTransform @@ -37,7 +37,7 @@ class RndRotateTransform : public UntrainableTransform
37 Q_PROPERTY(bool rotatePoints READ get_rotatePoints WRITE set_rotatePoints RESET reset_rotatePoints STORED false) 37 Q_PROPERTY(bool rotatePoints READ get_rotatePoints WRITE set_rotatePoints RESET reset_rotatePoints STORED false)
38 Q_PROPERTY(bool rotateRects READ get_rotateRects WRITE set_rotateRects RESET reset_rotateRects STORED false) 38 Q_PROPERTY(bool rotateRects READ get_rotateRects WRITE set_rotateRects RESET reset_rotateRects STORED false)
39 Q_PROPERTY(int centerIndex READ get_centerIndex WRITE set_centerIndex RESET reset_centerIndex STORED false) 39 Q_PROPERTY(int centerIndex READ get_centerIndex WRITE set_centerIndex RESET reset_centerIndex STORED false)
40 - Q_PROPERTY(int useRect READ get_useRect WRITE set_useRect RESET reset_useRect STORED false) 40 + Q_PROPERTY(bool useRect READ get_useRect WRITE set_useRect RESET reset_useRect STORED false)
41 BR_PROPERTY(QList<int>, range, QList<int>() << -15 << 15) 41 BR_PROPERTY(QList<int>, range, QList<int>() << -15 << 15)
42 BR_PROPERTY(bool, rotateMat, true) 42 BR_PROPERTY(bool, rotateMat, true)
43 BR_PROPERTY(bool, rotatePoints, true) 43 BR_PROPERTY(bool, rotatePoints, true)