diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:30 +0900 |
commit | 69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch) | |
tree | 7b133311a4d5e5394f2612dced305f815c04847b /src/network/qftp.cpp | |
parent | e07baa10b7b8e7105e02a621efadac67216c61ed (diff) | |
download | tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip |
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/network/qftp.cpp')
-rw-r--r-- | src/network/qftp.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/network/qftp.cpp b/src/network/qftp.cpp index 31f07de30..f31029321 100644 --- a/src/network/qftp.cpp +++ b/src/network/qftp.cpp @@ -40,7 +40,7 @@ #include "ntqftp.h" -#ifndef QT_NO_NETWORKPROTOCOL_FTP +#ifndef TQT_NO_NETWORKPROTOCOL_FTP #include "ntqsocket.h" #include "ntqsocketdevice.h" @@ -52,7 +52,7 @@ #include "ntqfileinfo.h" #include "ntqptrdict.h" // binary compatibility -#ifndef QT_NO_TEXTCODEC +#ifndef TQT_NO_TEXTCODEC #include "ntqtextcodec.h" #endif @@ -935,7 +935,7 @@ bool TQFtpPI::processReply() return TRUE; } -#ifndef QT_NO_TEXTCODEC +#ifndef TQT_NO_TEXTCODEC TQM_EXPORT_FTP TQTextCodec *tqt_ftp_filename_codec = 0; #endif @@ -964,7 +964,7 @@ bool TQFtpPI::startNextCmd() tqDebug( "TQFtpPI send: %s", currentCmd.left( currentCmd.length()-2 ).latin1() ); #endif state = Waiting; -#ifndef QT_NO_TEXTCODEC +#ifndef TQT_NO_TEXTCODEC if ( tqt_ftp_filename_codec ) { int len = 0; TQCString enc = tqt_ftp_filename_codec->fromUnicode(currentCmd,len); @@ -2416,4 +2416,4 @@ void TQFtp::error( int ) #include "qftp.moc" -#endif // QT_NO_NETWORKPROTOCOL_FTP +#endif // TQT_NO_NETWORKPROTOCOL_FTP |