6 changed files with 9 additions and 9 deletions
@ -1,8 +1,8 @@
|
||||
#!/bin/bash |
||||
QT_VERSION=@QT_VERSION@ |
||||
|
||||
if [[ $1 == "" ]]; then |
||||
if [[ "$1" == "" ]]; then |
||||
echo "Usage: tqt-replace-stream <filename>" |
||||
else |
||||
cat $1 | sed 's/^Q_OBJECT/TQ_OBJECT/g' | sed 's/\([^T]\)Q_OBJECT/\1TQ_OBJECT/g' |
||||
cat "$1" | sed 's/^Q_OBJECT/TQ_OBJECT/g' | sed 's/\([^T]\)Q_OBJECT/\1TQ_OBJECT/g' |
||||
fi |
||||
|
Loading…
Reference in new issue