diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-09-27 16:03:56 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-09-27 16:03:56 +0900 |
commit | a615469e90c89c23000bd7c2f2905744123ac728 (patch) | |
tree | e3db27e2ce51ea6c9cfb0bb7dc2256bf4f8e60f0 /scripts/qtdoc | |
parent | fe4b336173b34957c0ebaecaba3d8781623acb68 (diff) | |
download | tdesdk-a615469e90c89c23000bd7c2f2905744123ac728.tar.gz tdesdk-a615469e90c89c23000bd7c2f2905744123ac728.zip |
qt -> tqt conversion:
QTDIR -> TQTDIR
QTDOC -> TQTDOC
INCDIR_QT -> INCDIR_TQT
LIBDIR_QT -> LIBDIR_TQT
QT_INC -> TQT_INC
QT_LIB -> TQT_LIB
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'scripts/qtdoc')
-rwxr-xr-x | scripts/qtdoc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/qtdoc b/scripts/qtdoc index 6250f7a9..f20fe2b2 100755 --- a/scripts/qtdoc +++ b/scripts/qtdoc @@ -1,7 +1,7 @@ #!/bin/sh -if [ -z "$QTDIR" ]; then - QTDIR=/usr/share/qt3 +if [ -z "$TQTDIR" ]; then + TQTDIR=/usr/share/qt3 fi # Run from command line, to open a qt help page in kfm/konqueror @@ -10,8 +10,8 @@ fi if [ $# = 1 ]; then fname=`echo $1 | tr '[A-Z]' '[a-z]'` - if [ -f $QTDIR/doc/html/$fname.html ]; then - tdeinit_wrapper kfmclient openProfile webbrowsing file:$QTDIR/doc/html/$fname.html + if [ -f $TQTDIR/doc/html/$fname.html ]; then + tdeinit_wrapper kfmclient openProfile webbrowsing file:$TQTDIR/doc/html/$fname.html else if [ -f /usr/doc/qt2/html/$fname.html ]; then tdeinit_wrapper kfmclient openProfile webbrowsing file:/usr/doc/qt2/html/$fname.html @@ -20,5 +20,5 @@ if [ $# = 1 ]; then fi fi else - kfmclient openURL file:$QTDIR/doc/html/index.html + kfmclient openURL file:$TQTDIR/doc/html/index.html fi |