summaryrefslogtreecommitdiffstats
path: root/conduits/malconduit/mal-conduit.cc
diff options
context:
space:
mode:
Diffstat (limited to 'conduits/malconduit/mal-conduit.cc')
-rw-r--r--conduits/malconduit/mal-conduit.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/conduits/malconduit/mal-conduit.cc b/conduits/malconduit/mal-conduit.cc
index 69a3f19..5aa5883 100644
--- a/conduits/malconduit/mal-conduit.cc
+++ b/conduits/malconduit/mal-conduit.cc
@@ -144,7 +144,7 @@ void MALConduit::readConfig()
void MALConduit::saveConfig()
{
FUNCTIONSETUP;
- MALConduitSettings::setLastMALSync( TQDateTime::tqcurrentDateTime() );
+ MALConduitSettings::setLastMALSync( TQDateTime::currentDateTime() );
MALConduitSettings::self()->writeConfig();
}
@@ -152,7 +152,7 @@ void MALConduit::saveConfig()
bool MALConduit::skip()
{
- TQDateTime now=TQDateTime::tqcurrentDateTime();
+ TQDateTime now=TQDateTime::currentDateTime();
TQDateTime lastSync=MALConduitSettings::lastMALSync();
if (!lastSync.isValid() || !now.isValid()) return false;
@@ -217,7 +217,7 @@ bool MALConduit::skip()
syncMessage = i18n("No proxy server is set.");
break;
}
- syncMessage = i18n("Using proxy server: %1").tqarg(proxyServer);
+ syncMessage = i18n("Using proxy server: %1").arg(proxyServer);
#ifdef DEBUG
DEBUGKPILOT<<" Using HTTP proxy server \""<<proxyServer<<
@@ -259,7 +259,7 @@ bool MALConduit::skip()
syncMessage = i18n("No SOCKS proxy is set.");
break;
}
- syncMessage = i18n("Using SOCKS proxy: %1").tqarg(proxyServer);
+ syncMessage = i18n("Using SOCKS proxy: %1").arg(proxyServer);
#ifdef DEBUG
DEBUGKPILOT<<" Using SOCKS proxy server \""<<proxyServer<<"\", Port "<<proxyPort<<", User "<<MALConduitSettings::proxyUser()<<", Password "<<( (MALConduitSettings::proxyPassword().isEmpty())?TQString("not "):TQString() )<<"set"<<endl;
#endif