diff options
author | David Boddie <david.boddie@nokia.com> | 2011-01-25 12:46:42 (GMT) |
---|---|---|
committer | David Boddie <david.boddie@nokia.com> | 2011-01-25 12:46:42 (GMT) |
commit | 67fbf125f3f96ea0ff0da66b1dd8b7dd348ca69f (patch) | |
tree | 88b9bffd9a0454c1a7f2b8dfb5d9b708b3480f7c | |
parent | 422514d98ac9a6c4df36caad81e6f315f3b80086 (diff) | |
download | Qt-67fbf125f3f96ea0ff0da66b1dd8b7dd348ca69f.zip Qt-67fbf125f3f96ea0ff0da66b1dd8b7dd348ca69f.tar.gz Qt-67fbf125f3f96ea0ff0da66b1dd8b7dd348ca69f.tar.bz2 |
Doc: Fixed errors in the address book tutorial.
Task-number: QTBUG-16865
-rw-r--r-- | doc/src/tutorials/addressbook.qdoc | 2 | ||||
-rw-r--r-- | examples/tutorials/addressbook/part6/addressbook.cpp | 2 | ||||
-rw-r--r-- | examples/tutorials/addressbook/part7/addressbook.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/tutorials/addressbook.qdoc b/doc/src/tutorials/addressbook.qdoc index cbc918f..ec4a4f3 100644 --- a/doc/src/tutorials/addressbook.qdoc +++ b/doc/src/tutorials/addressbook.qdoc @@ -831,7 +831,7 @@ \snippet tutorials/addressbook/part6/addressbook.cpp tooltip 2 Although it is not shown here, just like the other features we implemented, - we add the push buttons to the layout panel on the right, \c button1Layout, + we add the push buttons to the layout panel on the right, \c buttonLayout1, and we connect the push buttons' \l{QPushButton::clicked()}{clicked()} signals to their respective slots. diff --git a/examples/tutorials/addressbook/part6/addressbook.cpp b/examples/tutorials/addressbook/part6/addressbook.cpp index 64615c7..c7dc8e2 100644 --- a/examples/tutorials/addressbook/part6/addressbook.cpp +++ b/examples/tutorials/addressbook/part6/addressbook.cpp @@ -74,7 +74,7 @@ AddressBook::AddressBook(QWidget *parent) //! [tooltip 1] loadButton->setToolTip(tr("Load contacts from a file")); //! [tooltip 1] - saveButton = new QPushButton(tr("Sa&ve...")); + saveButton = new QPushButton(tr("&Save...")); //! [tooltip 2] saveButton->setToolTip(tr("Save contacts to a file")); //! [tooltip 2] diff --git a/examples/tutorials/addressbook/part7/addressbook.cpp b/examples/tutorials/addressbook/part7/addressbook.cpp index b04198c..501ad31 100644 --- a/examples/tutorials/addressbook/part7/addressbook.cpp +++ b/examples/tutorials/addressbook/part7/addressbook.cpp @@ -72,7 +72,7 @@ AddressBook::AddressBook(QWidget *parent) loadButton = new QPushButton(tr("&Load...")); loadButton->setToolTip(tr("Load contacts from a file")); - saveButton = new QPushButton(tr("Sa&ve...")); + saveButton = new QPushButton(tr("&Save...")); saveButton->setToolTip(tr("Save contacts to a file")); saveButton->setEnabled(false); |