summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel
diff options
context:
space:
mode:
authoraavit <qt_aavit@ovi.com>2012-08-30 16:18:26 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-31 16:49:54 +0200
commitf9bf5a88550193e7cab44f53ea878d8ccb6604dd (patch)
treecee1f1d774538e407983ccbe82db757a50602648 /src/gui/kernel
parent28881c0c91aa53412fae32c52ab297c76e890971 (diff)
Doc: Fixes for several doc errors
Change-Id: I5be9c8e9ff9c17fae0fbbe468f34439411aca06b Reviewed-by: Kim M. Kalland <kim.kalland@nokia.com>
Diffstat (limited to 'src/gui/kernel')
-rw-r--r--src/gui/kernel/qguiapplication.cpp11
-rw-r--r--src/gui/kernel/qscreen.cpp3
-rw-r--r--src/gui/kernel/qsessionmanager.cpp5
3 files changed, 10 insertions, 9 deletions
diff --git a/src/gui/kernel/qguiapplication.cpp b/src/gui/kernel/qguiapplication.cpp
index 8ffc969209..a7e9deab89 100644
--- a/src/gui/kernel/qguiapplication.cpp
+++ b/src/gui/kernel/qguiapplication.cpp
@@ -342,6 +342,9 @@ QGuiApplication::QGuiApplication(int &argc, char **argv, int flags)
QCoreApplicationPrivate::eventDispatcher->startingUp();
}
+/*!
+ \internal
+*/
QGuiApplication::QGuiApplication(QGuiApplicationPrivate &p)
: QCoreApplication(p)
{
@@ -557,6 +560,8 @@ QWindow *QGuiApplication::focusWindow()
\fn QGuiApplication::focusObjectChanged(QObject *focusObject)
This signal is emitted when final receiver of events tied to focus is changed.
+ \a focusObject is the new receiver.
+
\sa focusObject()
*/
@@ -564,6 +569,8 @@ QWindow *QGuiApplication::focusWindow()
\fn QGuiApplication::focusWindowChanged(QWindow *focusWindow)
This signal is emitted when the focused window changes.
+ \a focusWindow is the new focused window.
+
\sa focusWindow()
*/
@@ -637,7 +644,7 @@ QList<QScreen *> QGuiApplication::screens()
}
/*!
- Returns the top level window at the given position, if any.
+ Returns the top level window at the given position \a pos, if any.
*/
QWindow *QGuiApplication::topLevelAt(const QPoint &pos)
{
@@ -2076,7 +2083,7 @@ QPalette QGuiApplication::palette()
}
/*!
- Changes the default application palette to \a palette.
+ Changes the default application palette to \a pal.
\sa palette()
*/
diff --git a/src/gui/kernel/qscreen.cpp b/src/gui/kernel/qscreen.cpp
index 497c095e37..ba8fafcb84 100644
--- a/src/gui/kernel/qscreen.cpp
+++ b/src/gui/kernel/qscreen.cpp
@@ -298,8 +298,7 @@ QSize QScreen::virtualSize() const
}
/*!
- \property QScreen::virtualGeometry
- \brief the pixel geometry of the virtual desktop corresponding to this screen
+ Returns the pixel geometry of the virtual desktop corresponding to this screen.
This is the union of the virtual siblings' individual geometries.
diff --git a/src/gui/kernel/qsessionmanager.cpp b/src/gui/kernel/qsessionmanager.cpp
index ec2787f1bf..92cf4ecbc5 100644
--- a/src/gui/kernel/qsessionmanager.cpp
+++ b/src/gui/kernel/qsessionmanager.cpp
@@ -117,11 +117,6 @@ QT_BEGIN_NAMESPACE
The default hint is \c RestartIfRunning.
*/
-/*!
- \fn void* QSessionManager::handle() const
-
- \internal
-*/
class QSessionManagerPrivate : public QObjectPrivate
{