diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2010-07-26 12:03:00 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2010-07-26 14:04:18 (GMT) |
commit | a882a46b1c60e5774ade68eaac60922b19a08835 (patch) | |
tree | d603f2ad38e235392e3bccdee51836c2667cfda7 /doc/src/snippets/widgets-tutorial | |
parent | 3a08c5b1682e211bf664c21850187e2b15e89c23 (diff) | |
download | Qt-a882a46b1c60e5774ade68eaac60922b19a08835.zip Qt-a882a46b1c60e5774ade68eaac60922b19a08835.tar.gz Qt-a882a46b1c60e5774ade68eaac60922b19a08835.tar.bz2 |
Doc: use const& in foreach when applicable.
Const reference are slightly faster than doing a copy of the object
on each iteration.
Lead by example by having this pattern right in our documentation
Diffstat (limited to 'doc/src/snippets/widgets-tutorial')
-rw-r--r-- | doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp b/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp index 6a49be8..35d2fa7 100644 --- a/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp +++ b/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp @@ -72,9 +72,9 @@ int main(int argc, char *argv[]) << (QStringList() << "David Bradley" << "42") << (QStringList() << "Knut Walters" << "25") << (QStringList() << "Andrea Jones" << "34"); - foreach (QStringList row, rows) { + foreach (const QStringList &row, rows) { QList<QStandardItem *> items; - foreach (QString text, row) + foreach (const QString &text, row) items.append(new QStandardItem(text)); model.appendRow(items); } |