From c03a4800879ab62692e017e01c825ba12a421ad0 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 1 Jul 2025 22:09:14 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 2 Signed-off-by: Michele Calgaro --- qmake/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'qmake/main.cpp') diff --git a/qmake/main.cpp b/qmake/main.cpp index 9ba3cd8ce..b8a307512 100644 --- a/qmake/main.cpp +++ b/qmake/main.cpp @@ -52,7 +52,7 @@ #ifdef Q_OS_MAC // for tqurl -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) -- cgit v1.2.3