summaryrefslogtreecommitdiffstats
path: root/scripts/includemocs
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 20:06:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 20:33:38 +0900
commit7485c8248a1bb3a2fed851d389a291d60bba7752 (patch)
tree01530186491285c596ad8bea4ee9368436e38a48 /scripts/includemocs
parent2611dd9a2020f335eff619aeeffc3730144ce657 (diff)
downloadtdesdk-7485c8248a1bb3a2fed851d389a291d60bba7752.tar.gz
tdesdk-7485c8248a1bb3a2fed851d389a291d60bba7752.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 0ffe839d6e363933ed4d9d212b6fd325a6fc3225)
Diffstat (limited to 'scripts/includemocs')
-rwxr-xr-xscripts/includemocs4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/includemocs b/scripts/includemocs
index 3b2c87f0..a96d4fd7 100755
--- a/scripts/includemocs
+++ b/scripts/includemocs
@@ -71,14 +71,14 @@ includemocs -- handle mocifyable headers, whose .moc file is nowhere included.
=head1 DESCRIPTION
-Header files declaring a QObject descendant have to be run through moc to
+Header files declaring a TQObject descendant have to be run through moc to
produce a .moc file. This .moc file has to be compiled, for which two
possibilities exists: compile it separately, or #include it in the C++ file
implementing that above mentioned class. The latter is more efficient in term
of compilation speed.
This script searches in the current directory and its subdirs for header files
-declaring a QObject descendant class. If it finds some, it looks, if there is
+declaring a TQObject descendant class. If it finds some, it looks, if there is
a C++ file containing an '#include' for the generated .moc file. If thats not
the case, it tries to guess into which C++ file that '#include' is placed best
(based on the filename). If it fails to guess a proper place, it mentions