summaryrefslogtreecommitdiffstats
path: root/examples/activeqt/hierarchy/objects.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/activeqt/hierarchy/objects.cpp')
-rw-r--r--examples/activeqt/hierarchy/objects.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/activeqt/hierarchy/objects.cpp b/examples/activeqt/hierarchy/objects.cpp
index 918f219..bb0b701 100644
--- a/examples/activeqt/hierarchy/objects.cpp
+++ b/examples/activeqt/hierarchy/objects.cpp
@@ -62,7 +62,7 @@ void QParentWidget::createSubWidget(const QString &name)
//! [1] //! [2]
QSubWidget *QParentWidget::subWidget(const QString &name)
{
- return qFindChild<QSubWidget*>(this, name);
+ return findChild<QSubWidget*>(name);
}
//! [2]