diff options
author | Martin Smith <msmith@trolltech.com> | 2010-01-05 08:01:47 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2010-01-07 10:44:42 (GMT) |
commit | 925735e70e0c7323f4ba6116fc1caea9d7518573 (patch) | |
tree | 1ff67d7a4c77e6e38a9a625e83724b67bec4bfaa | |
parent | 996275507137564eb7e20271b6fc008052f87932 (diff) | |
download | Qt-925735e70e0c7323f4ba6116fc1caea9d7518573.zip Qt-925735e70e0c7323f4ba6116fc1caea9d7518573.tar.gz Qt-925735e70e0c7323f4ba6116fc1caea9d7518573.tar.bz2 |
doc: Clarified next and previous activation order.
Task-number: QTBUG-6992
(cherry picked from commit 049f65b4d07587e26c69602e6e59682e82948bd2)
-rw-r--r-- | src/gui/widgets/qmdiarea.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/widgets/qmdiarea.cpp b/src/gui/widgets/qmdiarea.cpp index 7dd48f3..7e51780 100644 --- a/src/gui/widgets/qmdiarea.cpp +++ b/src/gui/widgets/qmdiarea.cpp @@ -1853,11 +1853,11 @@ void QMdiArea::closeAllSubWindows() } /*! - Gives the keyboard focus to the next window in the list of child - windows. The windows are activated in the order in which they are - created (CreationOrder). + Gives the keyboard focus to another window in the list of child + windows. The window activated will be the next one determined + by the current \l{QMdiArea::WindowOrder} {activation order}. - \sa activatePreviousSubWindow() + \sa activatePreviousSubWindow(), QMdiArea::WindowOrder */ void QMdiArea::activateNextSubWindow() { @@ -1871,11 +1871,11 @@ void QMdiArea::activateNextSubWindow() } /*! - Gives the keyboard focus to the previous window in the list of - child windows. The windows are activated in the order in which - they are created (CreationOrder). + Gives the keyboard focus to another window in the list of child + windows. The window activated will be the previous one determined + by the current \l{QMdiArea::WindowOrder} {activation order}. - \sa activateNextSubWindow() + \sa activateNextSubWindow(), QMdiArea::WindowOrder */ void QMdiArea::activatePreviousSubWindow() { |