diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-30 14:27:29 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-06-25 16:43:08 +0900 |
| commit | 35ced32e331ee29fda1642616c803637952f5b22 (patch) | |
| tree | da44726777f814e19c7ef1e43854f6a1693dd6fb /tools/linguist/tqm2ts/main.cpp | |
| parent | 7dd4848d61e4c52091d6c644356c84c67536bde2 (diff) | |
| download | tqt-35ced32e.tar.gz tqt-35ced32e.zip | |
Replace TRUE/FALSE with boolean values true/false - part 1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit a7f1e6e2552d9cdbb3d76bff089db522248b9a24)
Diffstat (limited to 'tools/linguist/tqm2ts/main.cpp')
| -rw-r--r-- | tools/linguist/tqm2ts/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/linguist/tqm2ts/main.cpp b/tools/linguist/tqm2ts/main.cpp index 6e71a3cbc..f4d93b500 100644 --- a/tools/linguist/tqm2ts/main.cpp +++ b/tools/linguist/tqm2ts/main.cpp @@ -53,7 +53,7 @@ static void printUsage() int main( int argc, char **argv ) { - bool verbose = FALSE; + bool verbose = false; int numQmFiles = 0; for ( int i = 1; i < argc; i++ ) { @@ -61,7 +61,7 @@ int main( int argc, char **argv ) printUsage(); return 0; } else if ( qstrcmp(argv[i], "-verbose") == 0 ) { - verbose = TRUE; + verbose = true; continue; } else if ( qstrcmp(argv[i], "-version") == 0 ) { fprintf( stderr, "tqm2ts version %s\n", TQT_VERSION_STR ); @@ -92,7 +92,7 @@ int main( int argc, char **argv ) context = "@default"; metator.insert( MetaTranslatorMessage(context, (*it).sourceText(), (*it).comment(), - (*it).translation(), FALSE, + (*it).translation(), false, MetaTranslatorMessage::Finished) ); } } |
