aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@digia.com>2012-10-22 17:09:06 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-09 13:33:19 +0100
commite35c6a788a887d7a85a836041e7d8e9a5ee48c46 (patch)
tree79f77acf56fd96f0023f8046b2fdfc9ffd0f1037 /tools
parent2973dc43241249f79904f98ad89e4a774fa70d25 (diff)
Renamed QWindow::pos property to position
Abbreviated properties are to be avoided, and this is a new class so we have a good opportunity to avoid it before the release. Related to qtbase change I19c00b54b1d2712f9418e8bcf56e35a8008b89ef Change-Id: Ibd5cd10814c8cbd2b1f6e49b70782c7768d2366d Reviewed-by: Samuel Rødal <samuel.rodal@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/easingcurveeditor/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/easingcurveeditor/mainwindow.cpp b/tools/easingcurveeditor/mainwindow.cpp
index 546ecee83f..7f7b2d96af 100644
--- a/tools/easingcurveeditor/mainwindow.cpp
+++ b/tools/easingcurveeditor/mainwindow.cpp
@@ -105,7 +105,7 @@ MainWindow::MainWindow(QWidget *parent) :
void MainWindow::showQuickView()
{
const int margin = 16;
- quickView.setPos(pos() + QPoint(0, frameGeometry().height() + margin));
+ quickView.setPosition(pos() + QPoint(0, frameGeometry().height() + margin));
quickView.raise();
quickView.show();