summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-11-07 22:37:15 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-11-07 22:37:15 -0600
commitef73e104bd71560e1dab2c0c9a1bb1d718674e1a (patch)
tree47507e67e6659272cb14f11a1ed3d0ee0929328b /bin
parent2bec4674492e058ed822768c0a9c4a848dbf81d9 (diff)
downloadqt3-ef73e104bd71560e1dab2c0c9a1bb1d718674e1a.tar.gz
qt3-ef73e104bd71560e1dab2c0c9a1bb1d718674e1a.zip
Update minor TQt3 tool names to match current TQt3 sources in GIT
Diffstat (limited to 'bin')
-rwxr-xr-xbin/findtr2
-rwxr-xr-xbin/qt20fix14
2 files changed, 8 insertions, 8 deletions
diff --git a/bin/findtr b/bin/findtr
index 7df3325..c7b82d1 100755
--- a/bin/findtr
+++ b/bin/findtr
@@ -37,7 +37,7 @@ msgstr ""
$scope = "";
if ( $#ARGV < 0 ) {
- print STDERR "Usage: findtr sourcefile ... >project.po\n";
+ print STDERR "Usage: tqtfindtr sourcefile ... >project.po\n";
exit 1;
}
diff --git a/bin/qt20fix b/bin/qt20fix
index d7cba30..9fc7f9e 100755
--- a/bin/qt20fix
+++ b/bin/qt20fix
@@ -1,14 +1,14 @@
#!/usr/bin/perl -w
#
# in sh/bash/zsh:
-# make 2>&1 | .../qt/bin/qt20fix
+# make 2>&1 | .../qt/bin/tqt20fix
# in csh/tcsh
-# make |& .../qt/bin/qt20fix
+# make |& .../qt/bin/tqt20fix
#
-# repeat as long as qt20fix says to. if your make supports the -k
+# repeat as long as tqt20fix says to. if your make supports the -k
# flag, that speeds up the process a bit.
#
-# qt20fix tends to fix a bit over half of the remaining problems in
+# tqt20fix 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 "qt20fix: writing $lastfile (changes: $changes)\n";
+ print "tqt20fix: 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 "qt20fix: writing $lastfile (changes: $changes)\n";
+ print "tqt20fix: writing $lastfile (changes: $changes)\n";
print O @currentfile;
close O;
}
if ( defined( $totalchanges) && $totalchanges > 0 ) {
- print "qt20fix: total changes: $totalchanges\nqt20fix: rerun recommended\n";
+ print "tqt20fix: total changes: $totalchanges\ntqt20fix: rerun recommended\n";
}