summaryrefslogtreecommitdiffstats
path: root/knewsticker
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:26:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:26:34 +0000
commit36e4074ba1536a63a121293b20663a38cad836b7 (patch)
tree5ec4cb3822a30ce8d43a9904931907ade1d7fe2c /knewsticker
parent47c8a359c5276062c4bc17f0e82410f29081b502 (diff)
downloadtdenetwork-36e4074ba1536a63a121293b20663a38cad836b7.tar.gz
tdenetwork-36e4074ba1536a63a121293b20663a38cad836b7.zip
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1158449 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'knewsticker')
-rw-r--r--knewsticker/common/configaccess.h4
-rw-r--r--knewsticker/common/configiface.h6
-rw-r--r--knewsticker/common/newsengine.cpp2
-rw-r--r--knewsticker/common/newsengine.h4
-rw-r--r--knewsticker/common/xmlnewsaccess.cpp2
-rw-r--r--knewsticker/common/xmlnewsaccess.h4
-rw-r--r--knewsticker/knewsticker.h2
-rw-r--r--knewsticker/kntsrcfilepropsdlg/kntsrcfilepropsdlg.h2
-rw-r--r--knewsticker/newsscroller.h4
-rw-r--r--knewsticker/newssourcedlgimpl.h4
10 files changed, 17 insertions, 17 deletions
diff --git a/knewsticker/common/configaccess.h b/knewsticker/common/configaccess.h
index 8d2c8a50..d434b152 100644
--- a/knewsticker/common/configaccess.h
+++ b/knewsticker/common/configaccess.h
@@ -24,8 +24,8 @@
#define DEFAULT_NEWSSOURCES 63
#define DEFAULT_SUBJECTS 13
-class QColor;
-class QFont;
+class TQColor;
+class TQFont;
class KURL;
class ArticleFilter {
diff --git a/knewsticker/common/configiface.h b/knewsticker/common/configiface.h
index e5f425c9..56cf3e22 100644
--- a/knewsticker/common/configiface.h
+++ b/knewsticker/common/configiface.h
@@ -11,9 +11,9 @@
#ifndef CONFIGIFACE_H
#define CONFIGIFACE_H
-class QColor;
-class QStringList;
-class QFont;
+class TQColor;
+class TQStringList;
+class TQFont;
class KURL;
diff --git a/knewsticker/common/newsengine.cpp b/knewsticker/common/newsengine.cpp
index a283a68b..911095d9 100644
--- a/knewsticker/common/newsengine.cpp
+++ b/knewsticker/common/newsengine.cpp
@@ -197,7 +197,7 @@ ProgramNewsSource::~ProgramNewsSource()
void ProgramNewsSource::retrieveNews()
{
- m_programOutput = new QBuffer;
+ m_programOutput = new TQBuffer;
m_programOutput->open(IO_WriteOnly);
*m_program << m_data.sourceFile;
diff --git a/knewsticker/common/newsengine.h b/knewsticker/common/newsengine.h
index 430efff7..ffc5dd08 100644
--- a/knewsticker/common/newsengine.h
+++ b/knewsticker/common/newsengine.h
@@ -30,8 +30,8 @@ class ConfigAccess;
class NewsIconMgr;
class NewsSourceBase;
-class QBuffer;
-class QDomDocument;
+class TQBuffer;
+class TQDomDocument;
class KProcess;
class KURL;
diff --git a/knewsticker/common/xmlnewsaccess.cpp b/knewsticker/common/xmlnewsaccess.cpp
index b8998e0c..8f4619f6 100644
--- a/knewsticker/common/xmlnewsaccess.cpp
+++ b/knewsticker/common/xmlnewsaccess.cpp
@@ -56,7 +56,7 @@ void XMLNewsSource::loadFrom(const KURL &url)
"request for " << url << endl;
return;
}
- m_downloadData = new QBuffer;
+ m_downloadData = new TQBuffer;
m_downloadData->open(IO_WriteOnly);
KIO::Job *job = KIO::get(url, false, false);
diff --git a/knewsticker/common/xmlnewsaccess.h b/knewsticker/common/xmlnewsaccess.h
index 46cbab59..0d036690 100644
--- a/knewsticker/common/xmlnewsaccess.h
+++ b/knewsticker/common/xmlnewsaccess.h
@@ -21,8 +21,8 @@
#include <kio/job.h>
#include <kurl.h>
-class QBuffer;
-class QDomDocument;
+class TQBuffer;
+class TQDomDocument;
class XMLNewsSource;
class XMLNewsArticle
diff --git a/knewsticker/knewsticker.h b/knewsticker/knewsticker.h
index 081918d7..e5621da1 100644
--- a/knewsticker/knewsticker.h
+++ b/knewsticker/knewsticker.h
@@ -32,7 +32,7 @@ class NewsIconMgr;
class NewsScroller;
class KNewsTickerMenu;
class KAboutData;
-class QTimer;
+class TQTimer;
class KNewsTicker : public KPanelApplet, virtual public ConfigIface,
virtual public DCOPObject
diff --git a/knewsticker/kntsrcfilepropsdlg/kntsrcfilepropsdlg.h b/knewsticker/kntsrcfilepropsdlg/kntsrcfilepropsdlg.h
index 0d41682e..0b1a0022 100644
--- a/knewsticker/kntsrcfilepropsdlg/kntsrcfilepropsdlg.h
+++ b/knewsticker/kntsrcfilepropsdlg/kntsrcfilepropsdlg.h
@@ -17,7 +17,7 @@
#include <kpropertiesdialog.h>
class KntSrcFilePropsDlgWidget;
-class QListBoxItem;
+class TQListBoxItem;
namespace RSS {
class Loader;
diff --git a/knewsticker/newsscroller.h b/knewsticker/newsscroller.h
index 3d37dc8d..b66e4a08 100644
--- a/knewsticker/newsscroller.h
+++ b/knewsticker/newsscroller.h
@@ -23,9 +23,9 @@
#include <tqptrlist.h>
#include <tqpixmap.h>
-class QTimer;
+class TQTimer;
class Headline;
-template <class> class QPtrList;
+template <class> class TQPtrList;
typedef TQPtrList<Headline> HeadlineList;
class NewsScroller : public QFrame
diff --git a/knewsticker/newssourcedlgimpl.h b/knewsticker/newssourcedlgimpl.h
index 86ed7c24..92f74252 100644
--- a/knewsticker/newssourcedlgimpl.h
+++ b/knewsticker/newssourcedlgimpl.h
@@ -20,8 +20,8 @@
class XMLNewsSource;
class NewsIconMgr;
-class QProgressBar;
-class QTimer;
+class TQProgressBar;
+class TQTimer;
class SuggestProgressDlg : public KDialogBase
{