summaryrefslogtreecommitdiffstats
path: root/akregator/src/notificationmanager.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /akregator/src/notificationmanager.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'akregator/src/notificationmanager.h')
-rw-r--r--akregator/src/notificationmanager.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/akregator/src/notificationmanager.h b/akregator/src/notificationmanager.h
index 5b274cef..9a543034 100644
--- a/akregator/src/notificationmanager.h
+++ b/akregator/src/notificationmanager.h
@@ -25,7 +25,7 @@
#ifndef AKREGATORNOTIFICATIONMANAGER_H
#define AKREGATORNOTIFICATIONMANAGER_H
-#include <qobject.h>
+#include <tqobject.h>
#include "article.h"
@@ -43,7 +43,7 @@ class NotificationManager : public QObject
~NotificationManager();
/** the widget used for notification, normally either the mainwindow or the tray icon */
- void setWidget(QWidget* widget, KInstance* inst=0);
+ void setWidget(TQWidget* widget, KInstance* inst=0);
public slots:
@@ -52,7 +52,7 @@ class NotificationManager : public QObject
void slotNotifyArticle(const Article& article);
/** notifies the addition of feeds (used when added via DCOP or command line) */
- void slotNotifyFeeds(const QStringList& feeds);
+ void slotNotifyFeeds(const TQStringList& feeds);
protected:
@@ -64,7 +64,7 @@ class NotificationManager : public QObject
private:
NotificationManager();
- NotificationManager(const NotificationManager&) : QObject(){}
+ NotificationManager(const NotificationManager&) : TQObject(){}
uint m_checkInterval;
uint m_intervalsLapsed;
@@ -72,10 +72,10 @@ class NotificationManager : public QObject
uint m_maxArticles;
bool m_running;
bool m_addedInLastInterval;
- QWidget* m_widget;
+ TQWidget* m_widget;
KInstance* m_instance;
- QValueList<Article> m_articles;
+ TQValueList<Article> m_articles;
static NotificationManager* m_self;
};