summaryrefslogtreecommitdiffstats
path: root/kbfxlib/common/kbfxkiodownload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbfxlib/common/kbfxkiodownload.cpp')
-rw-r--r--kbfxlib/common/kbfxkiodownload.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kbfxlib/common/kbfxkiodownload.cpp b/kbfxlib/common/kbfxkiodownload.cpp
index ff6dccc..59d0db2 100644
--- a/kbfxlib/common/kbfxkiodownload.cpp
+++ b/kbfxlib/common/kbfxkiodownload.cpp
@@ -21,8 +21,8 @@
#include "kbfxkiodownload.h"
-KbfxKioDownload::KbfxKioDownload ( QObject *parent, const char *name )
- : QObject ( parent, name )
+KbfxKioDownload::KbfxKioDownload ( TQObject *tqparent, const char *name )
+ : TQObject ( tqparent, name )
{
m_KbfxBrowserError = 0;
m_KbfxBrowserErrorText = "No error";
@@ -36,14 +36,14 @@ KbfxKioDownload::KbfxKioDownload ( QObject *parent, const char *name )
KbfxKioDownload::~KbfxKioDownload()
{}
-void KbfxKioDownload::KbfxKioDownloadStart ( QString &url )
+void KbfxKioDownload::KbfxKioDownloadStart ( TQString &url )
{
KIO::Job *download_job = KIO::file_copy ( KURL ( url ),
KURL ( m_KbfxBrowserTmpFile ),
-1,
TRUE );
- connect ( download_job, SIGNAL ( result ( KIO::Job* ) ),
- this, SLOT ( KbfxBrowserResult ( KIO::Job * ) ) );
+ connect ( download_job, TQT_SIGNAL ( result ( KIO::Job* ) ),
+ this, TQT_SLOT ( KbfxBrowserResult ( KIO::Job * ) ) );
}
void KbfxKioDownload::KbfxBrowserResult ( KIO::Job *download_job )