summaryrefslogtreecommitdiffstats
path: root/plugins/search/htmlpart.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 20:34:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 20:34:15 +0000
commit1c1403293485f35fd53db45aaa77a01cdd9627e7 (patch)
tree38559cd68cd4f63023fb5f6375def9db3b8b491e /plugins/search/htmlpart.cpp
parent894f94545727610df22c4f73911d62d58266f695 (diff)
downloadktorrent-1c1403293485f35fd53db45aaa77a01cdd9627e7.tar.gz
ktorrent-1c1403293485f35fd53db45aaa77a01cdd9627e7.zip
TQt4 port ktorrent
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktorrent@1238733 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/search/htmlpart.cpp')
-rw-r--r--plugins/search/htmlpart.cpp38
1 files changed, 19 insertions, 19 deletions
diff --git a/plugins/search/htmlpart.cpp b/plugins/search/htmlpart.cpp
index b1c6b23..00d5326 100644
--- a/plugins/search/htmlpart.cpp
+++ b/plugins/search/htmlpart.cpp
@@ -20,9 +20,9 @@
#include <kmessagebox.h>
#include <kio/job.h>
#include <kio/jobclasses.h>
-//#include <qfile.h>
-#include <qclipboard.h>
-#include <qapplication.h>
+//#include <tqfile.h>
+#include <tqclipboard.h>
+#include <tqapplication.h>
#include <kio/netaccess.h>
#include <klocale.h>
#include <kfiledialog.h>
@@ -36,8 +36,8 @@ using namespace bt;
namespace kt
{
- HTMLPart::HTMLPart(QWidget *parent)
- : KHTMLPart(parent)
+ HTMLPart::HTMLPart(TQWidget *tqparent)
+ : KHTMLPart(tqparent)
{
setJScriptEnabled(true);
setJavaEnabled(true);
@@ -45,8 +45,8 @@ namespace kt
setPluginsEnabled(false);
setStatusMessagesEnabled(false);
KParts::BrowserExtension* ext = this->browserExtension();
- connect(ext,SIGNAL(openURLRequest(const KURL&,const KParts::URLArgs&)),
- this,SLOT(openURLRequest(const KURL&, const KParts::URLArgs& )));
+ connect(ext,TQT_SIGNAL(openURLRequest(const KURL&,const KParts::URLArgs&)),
+ this,TQT_SLOT(openURLRequest(const KURL&, const KParts::URLArgs& )));
ext->enableAction("copy",true);
ext->enableAction("paste",true);
@@ -59,11 +59,11 @@ namespace kt
void HTMLPart::copy()
{
- QString txt = selectedText();
- QClipboard *cb = QApplication::clipboard();
+ TQString txt = selectedText();
+ TQClipboard *cb = TQApplication::tqclipboard();
// Copy text into the clipboard
if (cb)
- cb->setText(txt,QClipboard::Clipboard);
+ cb->setText(txt,TQClipboard::Clipboard);
}
void HTMLPart::openURLRequest(const KURL &u,const KParts::URLArgs &)
@@ -75,15 +75,15 @@ namespace kt
}
KIO::TransferJob* j = KIO::get(u,false,false);
- connect(j,SIGNAL(data(KIO::Job*,const QByteArray &)),
- this,SLOT(dataRecieved(KIO::Job*, const QByteArray& )));
- connect(j,SIGNAL(result(KIO::Job*)),this,SLOT(jobDone(KIO::Job* )));
- connect(j,SIGNAL(mimetype(KIO::Job*, const QString &)),
- this,SLOT(mimetype(KIO::Job*, const QString& )));
+ connect(j,TQT_SIGNAL(data(KIO::Job*,const TQByteArray &)),
+ this,TQT_SLOT(dataRecieved(KIO::Job*, const TQByteArray& )));
+ connect(j,TQT_SIGNAL(result(KIO::Job*)),this,TQT_SLOT(jobDone(KIO::Job* )));
+ connect(j,TQT_SIGNAL(mimetype(KIO::Job*, const TQString &)),
+ this,TQT_SLOT(mimetype(KIO::Job*, const TQString& )));
active_job = j;
curr_data.resize(0);
- mime_type = QString::null;
+ mime_type = TQString();
curr_url = u;
}
@@ -115,7 +115,7 @@ namespace kt
openURL(url());
}
- void HTMLPart::dataRecieved(KIO::Job* job,const QByteArray & data)
+ void HTMLPart::dataRecieved(KIO::Job* job,const TQByteArray & data)
{
if (job != active_job)
{
@@ -134,7 +134,7 @@ namespace kt
}
}
- void HTMLPart::mimetype(KIO::Job* job,const QString & mt)
+ void HTMLPart::mimetype(KIO::Job* job,const TQString & mt)
{
if (job != active_job)
{
@@ -191,7 +191,7 @@ namespace kt
active_job = 0;
curr_data.resize(0);
curr_url = KURL();
- mime_type = QString::null;
+ mime_type = TQString();
}
}