diff options
author | Janne Koskinen <janne.p.koskinen@digia.com> | 2009-05-18 12:56:44 (GMT) |
---|---|---|
committer | Janne Koskinen <janne.p.koskinen@digia.com> | 2009-05-18 12:56:44 (GMT) |
commit | 181dc3984ddf1445d85d085f82c7d14f2fc08519 (patch) | |
tree | 6c728d05d54ae91548fa7493682faa3c4c4fc662 /tools/qdbus/qdbusxml2cpp | |
parent | 37930d767ad67912b58332a87b6b6efc942a3082 (diff) | |
parent | 6e81bfbaf69864a06240835e0b30cdc47a2668b7 (diff) | |
download | Qt-181dc3984ddf1445d85d085f82c7d14f2fc08519.zip Qt-181dc3984ddf1445d85d085f82c7d14f2fc08519.tar.gz Qt-181dc3984ddf1445d85d085f82c7d14f2fc08519.tar.bz2 |
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-public
Diffstat (limited to 'tools/qdbus/qdbusxml2cpp')
-rw-r--r-- | tools/qdbus/qdbusxml2cpp/qdbusxml2cpp.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/qdbus/qdbusxml2cpp/qdbusxml2cpp.cpp b/tools/qdbus/qdbusxml2cpp/qdbusxml2cpp.cpp index a871fe4..d7dab0b 100644 --- a/tools/qdbus/qdbusxml2cpp/qdbusxml2cpp.cpp +++ b/tools/qdbus/qdbusxml2cpp/qdbusxml2cpp.cpp @@ -82,7 +82,6 @@ static QStringList wantedInterfaces; static const char help[] = "Usage: " PROGRAMNAME " [options...] [xml-or-xml-file] [interfaces...]\n" "Produces the C++ code to implement the interfaces defined in the input file.\n" - "If no options are given, the code is written to the standard output.\n" "\n" "Options:\n" " -a <filename> Write the adaptor code to <filename>\n" @@ -99,7 +98,10 @@ static const char help[] = "If the file name given to the options -a and -p does not end in .cpp or .h, the\n" "program will automatically append the suffixes and produce both files.\n" "You can also use a colon (:) to separate the header name from the source file\n" - "name, as in '-a filename_p.h:filename.cpp'.\n"; + "name, as in '-a filename_p.h:filename.cpp'.\n" + "\n" + "If you pass a dash (-) as the argument to either -p or -a, the output is written\n" + "to the standard output\n"; static const char includeList[] = "#include <QtCore/QByteArray>\n" |