summaryrefslogtreecommitdiffstats
path: root/win/tools/kmoc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:36:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 19:44:38 +0900
commit8eb500c4e81229a9853e2f9bac4f39450083f3d7 (patch)
tree3c700b8550635d12c771ff0a1cb310a40a88e4b7 /win/tools/kmoc
parenta91e58bb975c56acdab25227a8b1c1c842dbdd34 (diff)
downloadtdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.tar.gz
tdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'win/tools/kmoc')
-rwxr-xr-xwin/tools/kmoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tools/kmoc b/win/tools/kmoc
index 2fef8ea60..8e79c8246 100755
--- a/win/tools/kmoc
+++ b/win/tools/kmoc
@@ -6,7 +6,7 @@
mkdir -p moc
find . -maxdepth 1 -name \*.h | while read ; do
- grep Q_OBJECT $REPLY > /dev/null || continue
+ grep TQ_OBJECT $REPLY > /dev/null || continue
moc=moc/`echo $REPLY | sed -e "s/\\.h/\\.moc/;s/\\.\\///"`
if [ $moc -ot $REPLY ] ; then echo mocing $REPLY... ; moc $REPLY -o $moc ; fi
done