summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms
diff options
context:
space:
mode:
authorSamuel Rødal <samuel.rodal@digia.com>2012-11-27 14:57:19 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-27 15:24:31 +0100
commit7a7102ad07c82c460bbe393931c13f95efd741fe (patch)
tree40a4a26787c4c890404edeedbcb08a4f3a23cba9 /src/plugins/platforms
parentfe3fa346fdb794e2e3ae59c68b5ae0d4a26a084a (diff)
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 <lars.knoll@digia.com> Reviewed-by: Gunnar Sletta <gunnar.sletta@digia.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'src/plugins/platforms')
-rw-r--r--src/plugins/platforms/windows/qwindowswindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platforms/windows/qwindowswindow.cpp b/src/plugins/platforms/windows/qwindowswindow.cpp
index 25aae11d87..123607cd79 100644
--- a/src/plugins/platforms/windows/qwindowswindow.cpp
+++ b/src/plugins/platforms/windows/qwindowswindow.cpp
@@ -997,7 +997,7 @@ void QWindowsWindow::handleHidden()
void QWindowsWindow::setGeometry(const QRect &rectIn)
{
QRect rect = rectIn;
- // This means it is a call from QWindow::setFramePos() and
+ // This means it is a call from QWindow::setFramePosition() and
// the coordinates include the frame (size is still the contents rectangle).
if (QWindowsGeometryHint::positionIncludesFrame(window())) {
const QMargins margins = frameMargins();