aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2009-08-21 15:38:43 -0300
committerHugo Lima <hugo.lima@openbossa.org>2009-08-25 16:23:11 -0300
commit55ec8a2a4d1c9453e9ba5b27bf8542fa4d586939 (patch)
treecbfb1481ea7d47f592aa7f3ed3d27cf24316eace /main.cpp
parent86c00c1d694cfc69b58ac2fbd0d7744c7f95e39a (diff)
Removed redundant PATHSPLITTER macro, using the already definied PATH_SPLITTER one instead.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/main.cpp b/main.cpp
index 14ebad64d..0c14e06aa 100644
--- a/main.cpp
+++ b/main.cpp
@@ -75,11 +75,6 @@ QMap<QString, QString> getCommandLineArgs(int argc, char** argv)
void printUsage(const GeneratorList& generators)
{
- #if defined(Q_OS_WIN32)
- #define PATHSPLITTER ";"
- #else
- #define PATHSPLITTER ":"
- #endif
QTextStream s(stdout);
s << "Usage:\n "
<< "generator [options] header-file typesystem-file\n\n"
@@ -90,8 +85,8 @@ void printUsage(const GeneratorList& generators)
generalOptions.insert("help", "Display this help and exit");
generalOptions.insert("no-suppress-warnings", "Show all warnings");
generalOptions.insert("output-directory=[dir]", "The directory where the generated files will be written");
- generalOptions.insert("include-paths=<path>[" PATHSPLITTER "<path>" PATHSPLITTER "...]", "Include paths used by the C++ parser");
- generalOptions.insert("typesystem-paths=<path>[" PATHSPLITTER "<path>" PATHSPLITTER "...]", "Paths used when searching for typesystems");
+ generalOptions.insert("include-paths=<path>[" PATH_SPLITTER "<path>" PATH_SPLITTER "...]", "Include paths used by the C++ parser");
+ generalOptions.insert("typesystem-paths=<path>[" PATH_SPLITTER "<path>" PATH_SPLITTER "...]", "Paths used when searching for typesystems");
generalOptions.insert("documentation-only", "Do not generates any code, just the documentation");
generalOptions.insert("license-file=[licensefile]", "File used for copyright headers of generated files");
generalOptions.insert("version", "Output version information and exit");