diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-01 22:09:14 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-08 09:01:42 +0900 |
| commit | 81ade129093a279e6537db25710583fd2bba9427 (patch) | |
| tree | a210834cbccc8aee2e9de7a8b7f41e1d31e2ced0 /qmake/main.cpp | |
| parent | 35ced32e331ee29fda1642616c803637952f5b22 (diff) | |
| download | tqt-81ade129.tar.gz tqt-81ade129.zip | |
Replace TRUE/FALSE with boolean values true/false - part 2
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c03a4800879ab62692e017e01c825ba12a421ad0)
Diffstat (limited to 'qmake/main.cpp')
| -rw-r--r-- | qmake/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qmake/main.cpp b/qmake/main.cpp index d9095ef0a..7e30a6785 100644 --- a/qmake/main.cpp +++ b/qmake/main.cpp @@ -52,7 +52,7 @@ #ifdef Q_OS_MAC // for qurl -bool tqt_resolve_symlinks = FALSE; +bool tqt_resolve_symlinks = false; #endif #if defined(TQ_WS_WIN) @@ -143,7 +143,7 @@ int main(int argc, char **argv) } } - bool using_stdout = FALSE; + bool using_stdout = false; MakefileGenerator *mkfile = MakefileGenerator::create(&proj); //figure out generator if(mkfile && (Option::qmake_mode == Option::QMAKE_GENERATE_MAKEFILE || Option::qmake_mode == Option::QMAKE_GENERATE_PROJECT)) { @@ -153,7 +153,7 @@ int main(int argc, char **argv) Option::output.setName(""); Option::output_dir = TQDir::currentDirPath(); Option::output.open(IO_WriteOnly | IO_Translate, stdout); - using_stdout = TRUE; + using_stdout = true; } else { if(Option::output.name().isEmpty() && Option::qmake_mode == Option::QMAKE_GENERATE_MAKEFILE) Option::output.setName(proj.first("QMAKE_MAKEFILE")); @@ -166,7 +166,7 @@ int main(int argc, char **argv) } } } else { - using_stdout = TRUE; //kind of.. + using_stdout = true; //kind of.. } if(mkfile && !mkfile->write()) { if(Option::qmake_mode == Option::QMAKE_GENERATE_PROJECT) |
