summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/network/tqftp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/src/network/tqftp.cpp')
-rw-r--r--tqtinterface/qt4/src/network/tqftp.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tqtinterface/qt4/src/network/tqftp.cpp b/tqtinterface/qt4/src/network/tqftp.cpp
index 7fb239e..7b6acdd 100644
--- a/tqtinterface/qt4/src/network/tqftp.cpp
+++ b/tqtinterface/qt4/src/network/tqftp.cpp
@@ -481,7 +481,7 @@ bool TQFtpDTP::parseDir( const TQString &buffer, const TQString &userName, TQUrl
dateStr += lst[ 6 ];
dateStr += ' ';
- if ( lst[ 7 ].tqcontains( ":" ) ) {
+ if ( lst[ 7 ].contains( ":" ) ) {
time = TQTime( lst[ 7 ].left( 2 ).toInt(), lst[ 7 ].right( 2 ).toInt() );
dateStr += TQString::number( TQDate::currentDate().year() );
} else {
@@ -491,7 +491,7 @@ bool TQFtpDTP::parseDir( const TQString &buffer, const TQString &userName, TQUrl
TQDate date = TQT_TQDATE_OBJECT(TQDate::fromString( dateStr ));
info->setLastModified( TQDateTime( date, time ) );
- if ( lst[ 7 ].tqcontains( ":" ) ) {
+ if ( lst[ 7 ].contains( ":" ) ) {
const int futureTolerance = 600;
if( info->lastModified().secsTo( TQDateTime::tqcurrentDateTime() ) < -futureTolerance ) {
TQDateTime dt = info->lastModified();
@@ -1046,10 +1046,10 @@ static TQFtpPrivate* d( const TQFtp* foo )
d_ptr->setAutoDelete( TRUE );
qAddPostRoutine( cleanup_d_ptr );
}
- TQFtpPrivate* ret = d_ptr->tqfind( (void*)foo );
+ TQFtpPrivate* ret = d_ptr->find( (void*)foo );
if ( ! ret ) {
ret = new TQFtpPrivate;
- d_ptr->tqreplace( (void*) foo, ret );
+ d_ptr->replace( (void*) foo, ret );
}
return ret;
}
@@ -1347,7 +1347,7 @@ void TQFtp::init()
\fn void TQFtp::listInfo( const TQUrlInfo &i );
This signal is emitted for each directory entry the list() command
- tqfinds. The details of the entry are stored in \a i.
+ finds. The details of the entry are stored in \a i.
\sa list()
*/
@@ -1929,7 +1929,7 @@ TQFtp::State TQFtp::state() const
}
/*!
- Returns the last error that occurred. This is useful to tqfind out
+ Returns the last error that occurred. This is useful to find out
what when wrong when receiving a commandFinished() or a done()
signal with the \c error argument set to \c TRUE.