diff options
Diffstat (limited to 'akregator/src/notificationmanager.h')
-rw-r--r-- | akregator/src/notificationmanager.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/akregator/src/notificationmanager.h b/akregator/src/notificationmanager.h index 5b274cef7..9a5430343 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; }; |