diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:36 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:36 +0900 |
commit | 5dba7cef0aec034ce61df1516a305723480b86ca (patch) | |
tree | e5006ec6ac540ebd6e47307d1f3caca253ede51d /smoke/tde/generate.pl.in | |
parent | 78a950757d18f6f1c37d01d5fb290b7b11b20e73 (diff) | |
download | tdebindings-5dba7cef0aec034ce61df1516a305723480b86ca.tar.gz tdebindings-5dba7cef0aec034ce61df1516a305723480b86ca.zip |
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'smoke/tde/generate.pl.in')
-rw-r--r-- | smoke/tde/generate.pl.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smoke/tde/generate.pl.in b/smoke/tde/generate.pl.in index eb224025..d5d8416d 100644 --- a/smoke/tde/generate.pl.in +++ b/smoke/tde/generate.pl.in @@ -34,7 +34,7 @@ if (-d $outdir) { system "rm -f $outdir/x_*.cpp"; } else { mkdir $outdir; } mkdir $finaloutdir unless (-d $finaloutdir); -# Load the QT_NO_* macros found in "qtdefines". They'll be passed to kalyptus +# Load the TQT_NO_* macros found in "qtdefines". They'll be passed to kalyptus my $macros=""; if ( -e $definespath ){ print "Found '$defines'. Reading preprocessor symbols from there...\n"; @@ -131,7 +131,7 @@ if("@KDE_HAVE_GL@" eq "yes") open(DEFS, $definespath); my @defs = <DEFS>; close DEFS; - if(!grep(/QT_NO_OPENGL/, @defs)) + if(!grep(/TQT_NO_OPENGL/, @defs)) { $excludes{'qgl.h'} = undef; $excludes{'qglcolormap.h'} = undef; |