From 7a7102ad07c82c460bbe393931c13f95efd741fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20R=C3=B8dal?= Date: Tue, 27 Nov 2012 14:57:19 +0100 Subject: Fixed abbreviations in QWindow::framePos() and QWindow::setFramePos(). As 672e7c875e8680818e23d0aef98129d95eb7e91c did changing pos() to position() and setPos() to setPosition(). Luckily there's not much code that uses these. Change-Id: I1e1982f00412a22bd376e667a5e8c30b6149f9b5 Reviewed-by: Lars Knoll Reviewed-by: Gunnar Sletta Reviewed-by: Friedemann Kleint --- examples/qpa/windows/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/qpa/windows/main.cpp b/examples/qpa/windows/main.cpp index 4313dadc83..c711f3e843 100644 --- a/examples/qpa/windows/main.cpp +++ b/examples/qpa/windows/main.cpp @@ -52,13 +52,13 @@ int main(int argc, char **argv) QGuiApplication app(argc, argv); Window a; - a.setFramePos(QPoint(10, 10)); + a.setFramePosition(QPoint(10, 10)); a.setTitle(QStringLiteral("Window A")); a.setObjectName(a.title()); a.setVisible(true); Window b; - b.setFramePos(QPoint(100, 100)); + b.setFramePosition(QPoint(100, 100)); b.setTitle(QStringLiteral("Window B")); b.setObjectName(b.title()); b.setVisible(true); -- cgit v1.2.3