summaryrefslogtreecommitdiffstats
path: root/tools/linguist/lupdate/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/linguist/lupdate/main.cpp')
-rw-r--r--tools/linguist/lupdate/main.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/tools/linguist/lupdate/main.cpp b/tools/linguist/lupdate/main.cpp
index 4bc833d09..290941526 100644
--- a/tools/linguist/lupdate/main.cpp
+++ b/tools/linguist/lupdate/main.cpp
@@ -101,18 +101,18 @@ int main( int argc, char **argv )
TQCString codec;
TQStringList tsFileNames;
- bool verbose = FALSE;
- bool noObsolete = FALSE;
- bool metSomething = FALSE;
+ bool verbose = false;
+ bool noObsolete = false;
+ bool metSomething = false;
int numFiles = 0;
- bool standardSyntax = TRUE;
- bool metTsFlag = FALSE;
+ bool standardSyntax = true;
+ bool metTsFlag = false;
int i;
for ( i = 1; i < argc; i++ ) {
if ( qstrcmp(argv[i], "-ts") == 0 )
- standardSyntax = FALSE;
+ standardSyntax = false;
}
for ( i = 1; i < argc; i++ ) {
@@ -120,16 +120,16 @@ int main( int argc, char **argv )
printUsage();
return 0;
} else if ( qstrcmp(argv[i], "-noobsolete") == 0 ) {
- noObsolete = TRUE;
+ noObsolete = true;
continue;
} else if ( qstrcmp(argv[i], "-verbose") == 0 ) {
- verbose = TRUE;
+ verbose = true;
continue;
} else if ( qstrcmp(argv[i], "-version") == 0 ) {
fprintf( stderr, "lupdate version %s\n", TQT_VERSION_STR );
return 0;
} else if ( qstrcmp(argv[i], "-ts") == 0 ) {
- metTsFlag = TRUE;
+ metTsFlag = true;
continue;
}
@@ -167,17 +167,17 @@ int main( int argc, char **argv )
for ( t = toks.begin(); t != toks.end(); ++t ) {
if ( it.key() == "HEADERS" || it.key() == "SOURCES" ) {
- fetchtr_cpp( *t, &fetchedTor, defaultContext, TRUE );
- metSomething = TRUE;
+ fetchtr_cpp( *t, &fetchedTor, defaultContext, true );
+ metSomething = true;
} else if ( it.key() == "INTERFACES" ||
it.key() == "FORMS" ) {
- fetchtr_ui( *t, &fetchedTor, defaultContext, TRUE );
+ fetchtr_ui( *t, &fetchedTor, defaultContext, true );
fetchtr_cpp( *t + ".h", &fetchedTor, defaultContext,
- FALSE );
- metSomething = TRUE;
+ false );
+ metSomething = true;
} else if ( it.key() == "TRANSLATIONS" ) {
tsFileNames.append( *t );
- metSomething = TRUE;
+ metSomething = true;
} else if ( it.key() == "CODEC" ||
it.key() == "DEFAULTCODEC" ) {
codec = (*t).latin1();
@@ -219,11 +219,11 @@ int main( int argc, char **argv )
} else {
TQFileInfo fi(argv[i]);
if ( TQString(argv[i]).lower().endsWith(".ui") ) {
- fetchtr_ui( fi.fileName(), &fetchedTor, defaultContext, TRUE );
+ fetchtr_ui( fi.fileName(), &fetchedTor, defaultContext, true );
fetchtr_cpp( TQString(fi.fileName()) + ".h", &fetchedTor,
- defaultContext, FALSE );
+ defaultContext, false );
} else {
- fetchtr_cpp( fi.fileName(), &fetchedTor, defaultContext, TRUE );
+ fetchtr_cpp( fi.fileName(), &fetchedTor, defaultContext, true );
}
}
}