summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/errorlog-interfaces.cpp16
-rw-r--r--src/pluginmanager.cpp4
-rw-r--r--src/stationlist.cpp2
-rw-r--r--src/stationlistxmlhandler.cpp2
-rw-r--r--src/tderadioapp.cpp6
5 files changed, 15 insertions, 15 deletions
diff --git a/src/errorlog-interfaces.cpp b/src/errorlog-interfaces.cpp
index e71304c..a384275 100644
--- a/src/errorlog-interfaces.cpp
+++ b/src/errorlog-interfaces.cpp
@@ -41,7 +41,7 @@ IErrorLog::~IErrorLog()
int IErrorLogClient::sendLogError(const TQString &s) const
{
kdDebug() << TQString(i18n("%1 Error: %2\n"))
- .arg(TQDateTime::currentDateTime().toString(Qt::ISODate))
+ .arg(TQDateTime::currentDateTime().toString(TQt::ISODate))
.arg(s);
IF_SEND_MESSAGE(logError(s));
}
@@ -50,7 +50,7 @@ int IErrorLogClient::sendLogError(const TQString &s) const
int IErrorLogClient::sendLogWarning(const TQString &s) const
{
kdDebug() << TQString(i18n("%1 Warning: %2\n"))
- .arg(TQDateTime::currentDateTime().toString(Qt::ISODate))
+ .arg(TQDateTime::currentDateTime().toString(TQt::ISODate))
.arg(s);
IF_SEND_MESSAGE(logWarning(s));
}
@@ -59,7 +59,7 @@ int IErrorLogClient::sendLogWarning(const TQString &s) const
int IErrorLogClient::sendLogInfo(const TQString &s) const
{
kdDebug() << TQString(i18n("%1 Information: %2\n"))
- .arg(TQDateTime::currentDateTime().toString(Qt::ISODate))
+ .arg(TQDateTime::currentDateTime().toString(TQt::ISODate))
.arg(s);
IF_SEND_MESSAGE(logInfo(s));
}
@@ -68,7 +68,7 @@ int IErrorLogClient::sendLogInfo(const TQString &s) const
int IErrorLogClient::sendLogDebug(const TQString &s) const
{
kdDebug() << TQString(i18n("%1 Debug: %2\n"))
- .arg(TQDateTime::currentDateTime().toString(Qt::ISODate))
+ .arg(TQDateTime::currentDateTime().toString(TQt::ISODate))
.arg(s);
IF_SEND_MESSAGE(logDebug(s));
}
@@ -76,7 +76,7 @@ int IErrorLogClient::sendLogDebug(const TQString &s) const
void IErrorLogClient::staticLogError (const TQString &s)
{
kdDebug() << TQString(i18n("%1 Error: %2\n"))
- .arg(TQDateTime::currentDateTime().toString(Qt::ISODate))
+ .arg(TQDateTime::currentDateTime().toString(TQt::ISODate))
.arg(s);
if (staticLogger)
staticLogger->logError(s);
@@ -85,7 +85,7 @@ void IErrorLogClient::staticLogError (const TQString &s)
void IErrorLogClient::staticLogWarning(const TQString &s)
{
kdDebug() << TQString(i18n("%1 Warning: %2\n"))
- .arg(TQDateTime::currentDateTime().toString(Qt::ISODate))
+ .arg(TQDateTime::currentDateTime().toString(TQt::ISODate))
.arg(s);
if (staticLogger)
staticLogger->logWarning(s);
@@ -94,7 +94,7 @@ void IErrorLogClient::staticLogWarning(const TQString &s)
void IErrorLogClient::staticLogInfo (const TQString &s)
{
kdDebug() << TQString(i18n("%1 Information: %2\n"))
- .arg(TQDateTime::currentDateTime().toString(Qt::ISODate))
+ .arg(TQDateTime::currentDateTime().toString(TQt::ISODate))
.arg(s);
if (staticLogger)
staticLogger->logInfo(s);
@@ -103,7 +103,7 @@ void IErrorLogClient::staticLogInfo (const TQString &s)
void IErrorLogClient::staticLogDebug (const TQString &s)
{
kdDebug() << TQString(i18n("%1 Debug: %2\n"))
- .arg(TQDateTime::currentDateTime().toString(Qt::ISODate))
+ .arg(TQDateTime::currentDateTime().toString(TQt::ISODate))
.arg(s);
if (staticLogger)
staticLogger->logDebug(s);
diff --git a/src/pluginmanager.cpp b/src/pluginmanager.cpp
index b4eedf3..89c750a 100644
--- a/src/pluginmanager.cpp
+++ b/src/pluginmanager.cpp
@@ -153,7 +153,7 @@ void PluginManager::insertPlugin(PluginBase *p)
if (p) {
BlockProfiler profiler_cfg("PluginManager::insertPlugin - about/config");
- /*kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
+ /*kdDebug() << TQDateTime::currentDateTime().toString(TQt::ISODate)
<< " Debug: Adding Plugin: " << p->name() << "\n";*/
if (!m_configDialog)
@@ -173,7 +173,7 @@ void PluginManager::insertPlugin(PluginBase *p)
// connect plugins with each other
for (PluginIterator it(m_plugins); it.current(); ++it) {
if (it.current() != p) {
- /*kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
+ /*kdDebug() << TQDateTime::currentDateTime().toString(TQt::ISODate)
<< " Debug: connecting with " << it.current()->name() << "\n";*/
p->connectI(it.current());
}
diff --git a/src/stationlist.cpp b/src/stationlist.cpp
index 391efd9..6f05f9d 100644
--- a/src/stationlist.cpp
+++ b/src/stationlist.cpp
@@ -415,7 +415,7 @@ TQString StationList::writeXML (const IErrorLogClient &/*logger*/) const
tt + xmlOpenTag(StationListInfo) +
ttt + xmlTag(StationListInfoCreator, "tderadio-" TDERADIO_VERSION) +
ttt + xmlTag(StationListInfoMaintainer, m_metaData.maintainer) +
- ttt + xmlTag(StationListInfoChanged, m_metaData.lastChange.toString(Qt::ISODate)) +
+ ttt + xmlTag(StationListInfoChanged, m_metaData.lastChange.toString(TQt::ISODate)) +
ttt + xmlTag(StationListInfoCountry, m_metaData.country) +
ttt + xmlTag(StationListInfoCity, m_metaData.city) +
ttt + xmlTag(StationListInfoMedia, m_metaData.media) +
diff --git a/src/stationlistxmlhandler.cpp b/src/stationlistxmlhandler.cpp
index 68bcc69..7c91145 100644
--- a/src/stationlistxmlhandler.cpp
+++ b/src/stationlistxmlhandler.cpp
@@ -197,7 +197,7 @@ bool StationListXmlHandler::characters (const TQString &ch)
} else if (stat == StationListInfoChanged) {
- m_metaData.lastChange = TQDateTime::fromString(str, Qt::ISODate);
+ m_metaData.lastChange = TQDateTime::fromString(str, TQt::ISODate);
} else if (stat == StationListInfoCreator) {
diff --git a/src/tderadioapp.cpp b/src/tderadioapp.cpp
index dfe28e7..83b481f 100644
--- a/src/tderadioapp.cpp
+++ b/src/tderadioapp.cpp
@@ -266,7 +266,7 @@ KLibrary *TDERadioApp::LoadLibrary (const TQString &library)
m_PluginInfos.insert(it.key(), PluginClassInfo (it.key(), *it, libinfo.init_func));
}
} else {
- kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
+ kdDebug() << TQDateTime::currentDateTime().toString(TQt::ISODate)
<< " "
<< i18n("Error: Loading Library %1 failed: %2")
.arg(library).arg(KLibLoader::self()->lastErrorMessage())
@@ -317,13 +317,13 @@ PluginBase *TDERadioApp::CreatePlugin (PluginManager *manager, const TQString &c
if (m_PluginInfos.contains(class_name)) {
retval = m_PluginInfos[class_name].CreateInstance(object_name);
if (!retval) {
- kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
+ kdDebug() << TQDateTime::currentDateTime().toString(TQt::ISODate)
<< " "
<< i18n("Error: Creation of instance \"%1\" of class %2 falied.").arg(object_name).arg(class_name)
<< endl;
}
} else {
- kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
+ kdDebug() << TQDateTime::currentDateTime().toString(TQt::ISODate)
<< " "
<< i18n("Error: Cannot create instance \"%1\" of unknown class %2.").arg(object_name).arg(class_name)
<< endl;