summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2014-01-18 13:56:06 -0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-27 09:51:29 +0100
commita8f1bd6b659d9ece7b5655f739ad6c1b6d834045 (patch)
tree33b24478bdefc75dda14bd1c2288958fbf9688e2
parenta4e703764e5f174fc6ca3f919e3acf44203dad91 (diff)
Fix typo in the function argument of QRect::moveTo: t -> y
Task-number: QTBUG-36259 Change-Id: If6f8da7f36d9a2bc171f2f50d36b37af8f13d8d0 Reviewed-by: Robin Burchell <robin+qt@viroteck.net> Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com>
-rw-r--r--src/corelib/tools/qrect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qrect.h b/src/corelib/tools/qrect.h
index 62ebdd10cd..22696f9edf 100644
--- a/src/corelib/tools/qrect.h
+++ b/src/corelib/tools/qrect.h
@@ -512,7 +512,7 @@ public:
Q_DECL_CONSTEXPR inline QRectF translated(qreal dx, qreal dy) const;
Q_DECL_CONSTEXPR inline QRectF translated(const QPointF &p) const;
- inline void moveTo(qreal x, qreal t);
+ inline void moveTo(qreal x, qreal y);
inline void moveTo(const QPointF &p);
inline void setRect(qreal x, qreal y, qreal w, qreal h);