diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:07:21 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:07:21 +0900 |
commit | 44548d3e71aab859c1547104f3419fd288add594 (patch) | |
tree | 16e117503409cd83a1af0b59a0cfa362316c9635 /scripts/includemocs | |
parent | b6f300eb213c1eaa7d3a1cece80cc9e7c46dc578 (diff) | |
download | tdesdk-44548d3e71aab859c1547104f3419fd288add594.tar.gz tdesdk-44548d3e71aab859c1547104f3419fd288add594.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'scripts/includemocs')
-rwxr-xr-x | scripts/includemocs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/includemocs b/scripts/includemocs index 2ff30a55..3b2c87f0 100755 --- a/scripts/includemocs +++ b/scripts/includemocs @@ -13,7 +13,7 @@ sub collectthing() if (/\.([^.]+)$/) { my $ext=$1; if (" h H hh hxx h++ " =~ / $ext /) { - my $line=`grep -l '^[{ \t]*Q_OBJECT' $_ 2> /dev/null`; + my $line=`grep -l '^[{ \t]*TQ_OBJECT' $_ 2> /dev/null`; chomp($line); if ($line) { $dir2files{$File::Find::dir}->{headers}->{$_} = 1; |