summaryrefslogtreecommitdiffstats
path: root/konq-plugins/akregator/pluginbase.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:22:56 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:22:56 +0000
commit7346aee26bf190a7e70333c40fab4caca847cd27 (patch)
tree4b019b434f88dcc3eeaafe1d3f26240b4c4718e8 /konq-plugins/akregator/pluginbase.cpp
parent23a3d3aa5b44cbdf305495919866d9dbf4f6da54 (diff)
downloadtdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.tar.gz
tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1157634 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konq-plugins/akregator/pluginbase.cpp')
-rw-r--r--konq-plugins/akregator/pluginbase.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/konq-plugins/akregator/pluginbase.cpp b/konq-plugins/akregator/pluginbase.cpp
index 4c6b5b1..f837426 100644
--- a/konq-plugins/akregator/pluginbase.cpp
+++ b/konq-plugins/akregator/pluginbase.cpp
@@ -30,7 +30,7 @@
#include "feeddetector.h"
#include "pluginbase.h"
-#include <qstringlist.h>
+#include <tqstringlist.h>
#include <kdebug.h>
@@ -49,7 +49,7 @@ bool PluginBase::akregatorRunning()
return reply.isValid();
}
-void PluginBase::addFeedsViaDCOP(const QStringList& urls)
+void PluginBase::addFeedsViaDCOP(const TQStringList& urls)
{
kdDebug() << "PluginBase::addFeedsViaDCOP" << endl;
DCOPRef akr("akregator", "AkregatorIface");
@@ -60,7 +60,7 @@ void PluginBase::addFeedsViaDCOP(const QStringList& urls)
}*/
}
-void PluginBase::addFeedViaCmdLine(QString url)
+void PluginBase::addFeedViaCmdLine(TQString url)
{
KProcess *proc = new KProcess;
*proc << "akregator" << "-g" << i18n("Imported Feeds");
@@ -70,9 +70,9 @@ void PluginBase::addFeedViaCmdLine(QString url)
}
// handle all the wild stuff that KURL doesn't handle
-QString PluginBase::fixRelativeURL(const QString &s, const KURL &baseurl)
+TQString PluginBase::fixRelativeURL(const TQString &s, const KURL &baseurl)
{
- QString s2=s;
+ TQString s2=s;
KURL u;
if (KURL::isRelativeURL(s2))
{
@@ -84,8 +84,8 @@ QString PluginBase::fixRelativeURL(const QString &s, const KURL &baseurl)
else if (s2.startsWith("/"))
{
KURL b2(baseurl);
- b2.setPath(QString()); // delete path and query, so that only protocol://host remains
- b2.setQuery(QString());
+ b2.setPath(TQString()); // delete path and query, so that only protocol://host remains
+ b2.setQuery(TQString());
u = KURL(b2, s2.remove(0,1)); // remove leading "/"
}
else