aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickrectangle_p.h
diff options
context:
space:
mode:
authorKim Motoyoshi Kalland <kim.kalland@nokia.com>2012-07-17 13:26:25 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-18 15:20:29 +0200
commit03e174e986920cf727f11200daa8b0eecfe02216 (patch)
tree1ec418eece0d1864564fca8599f6c89b3b122e40 /src/quick/items/qquickrectangle_p.h
parent884bc89e9fe765a7be245b3009339f999936a761 (diff)
Rename Rectangle's border.aligned property to border.pixelAligned.
Rename the Rectangle element's border.aligned property to border.pixelAligned to be consistent with the Flickable element's pixelAligned property. Change-Id: I916a47416c558f9a96f7b966c344525db984a85f Reviewed-by: Gunnar Sletta <gunnar.sletta@nokia.com> Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
Diffstat (limited to 'src/quick/items/qquickrectangle_p.h')
-rw-r--r--src/quick/items/qquickrectangle_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/quick/items/qquickrectangle_p.h b/src/quick/items/qquickrectangle_p.h
index 0ac2ea6aaa..194ff15086 100644
--- a/src/quick/items/qquickrectangle_p.h
+++ b/src/quick/items/qquickrectangle_p.h
@@ -58,7 +58,7 @@ class Q_AUTOTEST_EXPORT QQuickPen : public QObject
Q_PROPERTY(qreal width READ width WRITE setWidth NOTIFY penChanged)
Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY penChanged)
- Q_PROPERTY(bool aligned READ aligned WRITE setAligned NOTIFY penChanged)
+ Q_PROPERTY(bool pixelAligned READ pixelAligned WRITE setPixelAligned NOTIFY penChanged)
public:
QQuickPen(QObject *parent=0);
@@ -68,8 +68,8 @@ public:
QColor color() const;
void setColor(const QColor &c);
- bool aligned() const;
- void setAligned(bool aligned);
+ bool pixelAligned() const;
+ void setPixelAligned(bool aligned);
bool isValid() const;