diff options
Diffstat (limited to 'doc/src/snippets/qmake/comments.pro')
-rw-r--r-- | doc/src/snippets/qmake/comments.pro | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/src/snippets/qmake/comments.pro b/doc/src/snippets/qmake/comments.pro new file mode 100644 index 0000000..189d271 --- /dev/null +++ b/doc/src/snippets/qmake/comments.pro @@ -0,0 +1,10 @@ +#! [0] +# Comments usually start at the beginning of a line, but they +# can also follow other content on the same line. +#! [0] + +#! [1] +# To include a literal hash character, use the $$LITERAL_HASH variable: +urlPieces = http://doc.trolltech.com/4.0/qtextdocument.html pageCount +message($$join(urlPieces, $$LITERAL_HASH)) +#! [1] |