diff options
author | Geir Vattekar <geir.vattekar@trolltech.com> | 2009-06-18 12:05:24 (GMT) |
---|---|---|
committer | Geir Vattekar <geir.vattekar@trolltech.com> | 2009-06-18 12:05:24 (GMT) |
commit | f41887f827cb5011ffb2215d70679b9421745c94 (patch) | |
tree | 80aeb94e1bd72ce758fc91479a3858ca66bbe17c /doc/src/snippets | |
parent | 2114754f8f86e0b653b6057d9b46a30f97d51aef (diff) | |
parent | c23d4d6644bff2195fbb6aa84d3425dc2d31491a (diff) | |
download | Qt-f41887f827cb5011ffb2215d70679b9421745c94.zip Qt-f41887f827cb5011ffb2215d70679b9421745c94.tar.gz Qt-f41887f827cb5011ffb2215d70679b9421745c94.tar.bz2 |
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt
Diffstat (limited to 'doc/src/snippets')
-rw-r--r-- | doc/src/snippets/qstring/stringbuilder.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/src/snippets/qstring/stringbuilder.cpp b/doc/src/snippets/qstring/stringbuilder.cpp new file mode 100644 index 0000000..90803e2 --- /dev/null +++ b/doc/src/snippets/qstring/stringbuilder.cpp @@ -0,0 +1,28 @@ + +//! [0] + QString foo; + QString type = "long"; + + foo->setText(QLatin1String("vector<") + type + QLatin1String(">::iterator")); + + if (foo.startsWith("(" + type + ") 0x")) + ... +//! [0] + +//! [3] + #define QT_USE_FAST_CONCATENATION +//! [3] + +//! [4] + #define QT_USE_FAST_CONCATENATION + #define QT_USE_FAST_OPERATOR_PLUS +//! [4] + +//! [5] + #include <QStringBuilder> + + QString hello("hello"); + QStringRef el(&hello, 2, 3); + QLatin1String world("world"); + QString message = hello % el % world % QChar('!'); +//! [5] |