summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@nokia.com>2009-08-11 14:50:45 (GMT)
committerJocelyn Turcotte <jocelyn.turcotte@nokia.com>2009-08-11 14:52:36 (GMT)
commit54ad9d0e8527eef9ce027f90d7c0ec1d9051833a (patch)
treee86d642ede10fb7920c35f6f1271864b46bd9184 /src/gui/kernel
parent01cb98e141d201d7f7efd83dabefc7938759694b (diff)
downloadQt-54ad9d0e8527eef9ce027f90d7c0ec1d9051833a.zip
Qt-54ad9d0e8527eef9ce027f90d7c0ec1d9051833a.tar.gz
Qt-54ad9d0e8527eef9ce027f90d7c0ec1d9051833a.tar.bz2
QWidget::isHidden documentation clarification.
Reviewed-by: Kavindra
Diffstat (limited to 'src/gui/kernel')
-rw-r--r--src/gui/kernel/qwidget.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp
index f705761..0dfc6e3 100644
--- a/src/gui/kernel/qwidget.cpp
+++ b/src/gui/kernel/qwidget.cpp
@@ -6863,9 +6863,12 @@ void QWidgetPrivate::hide_helper()
widgets that are not visible.
- Widgets are hidden if they were created as independent
- windows or as children of visible widgets, or if hide() or setVisible(false) was called.
-
+ Widgets are hidden if:
+ \list
+ \o they were created as independent windows,
+ \o they were created as children of visible widgets,
+ \o hide() or setVisible(false) was called.
+ \endlist
*/