diff --git a/doc/addressbook-sdk.qdoc b/doc/addressbook-sdk.qdoc
index 94d633c5fa40ba5fd18fbf4b26b66e5fc367ecff..1974c129edec49962354569525e650d0a2a908e6 100644
--- a/doc/addressbook-sdk.qdoc
+++ b/doc/addressbook-sdk.qdoc
@@ -727,7 +727,7 @@
     dialog that can prompt the user for a contact's name. Qt provides QDialog,
     which we subclass in this chapter, to implement a FindDialog class.
 
-    \section1 Designing FindDialog
+    \section1 Designing \c FindDialog
 
     #image
 
@@ -743,6 +743,16 @@
     in a horizontal layout. Then set a top level layout - either horizontal or
     vertical.
 
+    \section1 Implementing \c FindDialog
+
+    Let's look at \c{FindDialog}'s header file. Here, we need to provide
+    private members for the class so that we can access the widgets freely
+    throughout the class.
+
+    \snippet examples/addressbook-sdk/part5/finddialog.h private members
+
+
+
 */
 
 
diff --git a/doc/examples/addressbook-sdk/part5/finddialog.h b/doc/examples/addressbook-sdk/part5/finddialog.h
index 8a1b3d47d54c6d6258b78b885fe119936fb3ba95..9d2f296cae639b0fbdb5215889defa1ecbd25309 100644
--- a/doc/examples/addressbook-sdk/part5/finddialog.h
+++ b/doc/examples/addressbook-sdk/part5/finddialog.h
@@ -19,11 +19,13 @@ public:
 public slots:
     void findClicked();
 
+//! [private members]
 private:
-    Ui::FindDialog *m_ui;
+    Ui::FindDialog *m_ui;\
     QPushButton *findButton;
     QLineEdit *lineEdit;
     QString findText;
+//! [private members]
 };
 
 #endif // FINDDIALOG_H