diff options
author | Slávek Banko <[email protected]> | 2013-11-08 09:46:27 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-11-08 09:46:27 +0100 |
commit | c0780a876e11732962b98e3b1aac0f503b4e9ad9 (patch) | |
tree | 3868825a8f2ab785cb308248a8e88942610f5a6f /bin | |
parent | ef73e104bd71560e1dab2c0c9a1bb1d718674e1a (diff) | |
download | qt3-c0780a876e11732962b98e3b1aac0f503b4e9ad9.tar.gz qt3-c0780a876e11732962b98e3b1aac0f503b4e9ad9.zip |
Revert "Update minor TQt3 tool names to match current TQt3 sources in GIT"
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/findtr | 2 | ||||
-rwxr-xr-x | bin/qt20fix | 14 |
2 files changed, 8 insertions, 8 deletions
@@ -37,7 +37,7 @@ msgstr "" $scope = ""; if ( $#ARGV < 0 ) { - print STDERR "Usage: tqtfindtr sourcefile ... >project.po\n"; + print STDERR "Usage: findtr sourcefile ... >project.po\n"; exit 1; } diff --git a/bin/qt20fix b/bin/qt20fix index 9fc7f9e..d7cba30 100755 --- a/bin/qt20fix +++ b/bin/qt20fix @@ -1,14 +1,14 @@ #!/usr/bin/perl -w # # in sh/bash/zsh: -# make 2>&1 | .../qt/bin/tqt20fix +# make 2>&1 | .../qt/bin/qt20fix # in csh/tcsh -# make |& .../qt/bin/tqt20fix +# make |& .../qt/bin/qt20fix # -# repeat as long as tqt20fix says to. if your make supports the -k +# repeat as long as qt20fix says to. if your make supports the -k # flag, that speeds up the process a bit. # -# tqt20fix tends to fix a bit over half of the remaining problems in +# qt20fix tends to fix a bit over half of the remaining problems in # each run. # # if you don't use gcc, you will need to change parseline. @@ -222,7 +222,7 @@ while( <STDIN> ) { if ( defined( $lastfile ) ) { open( O, "> $lastfile" ) || die "cannot write to $lastfile, stopped"; - print "tqt20fix: writing $lastfile (changes: $changes)\n"; + print "qt20fix: writing $lastfile (changes: $changes)\n"; print O @currentfile; close O; } @@ -248,12 +248,12 @@ while( <STDIN> ) { if ( defined( $changes) && $changes > 0 && defined( $lastfile ) ) { open( O, "> $lastfile" ) || die "cannot write to $lastfile, stopped"; - print "tqt20fix: writing $lastfile (changes: $changes)\n"; + print "qt20fix: writing $lastfile (changes: $changes)\n"; print O @currentfile; close O; } if ( defined( $totalchanges) && $totalchanges > 0 ) { - print "tqt20fix: total changes: $totalchanges\ntqt20fix: rerun recommended\n"; + print "qt20fix: total changes: $totalchanges\nqt20fix: rerun recommended\n"; } |