summaryrefslogtreecommitdiffstats
path: root/korganizer/kowhatsnextview.h
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/kowhatsnextview.h')
-rw-r--r--korganizer/kowhatsnextview.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/korganizer/kowhatsnextview.h b/korganizer/kowhatsnextview.h
index 7632fd02..54daf616 100644
--- a/korganizer/kowhatsnextview.h
+++ b/korganizer/kowhatsnextview.h
@@ -24,7 +24,7 @@
#ifndef KOWHATSNEXTVIEW_H
#define KOWHATSNEXTVIEW_H
-#include <qtextbrowser.h>
+#include <tqtextbrowser.h>
#include <korganizer/baseview.h>
@@ -32,15 +32,15 @@ class QListView;
class KOEventViewerDialog;
-class WhatsNextTextBrowser : public QTextBrowser {
+class WhatsNextTextBrowser : public TQTextBrowser {
Q_OBJECT
public:
- WhatsNextTextBrowser(QWidget *parent) : QTextBrowser(parent) {}
+ WhatsNextTextBrowser(TQWidget *parent) : TQTextBrowser(parent) {}
- void setSource(const QString &);
+ void setSource(const TQString &);
signals:
- void showIncidence(const QString &uid);
+ void showIncidence(const TQString &uid);
};
@@ -51,7 +51,7 @@ class KOWhatsNextView : public KOrg::BaseView
{
Q_OBJECT
public:
- KOWhatsNextView(Calendar *calendar, QWidget *parent = 0,
+ KOWhatsNextView(Calendar *calendar, TQWidget *parent = 0,
const char *name = 0);
~KOWhatsNextView();
@@ -61,24 +61,24 @@ class KOWhatsNextView : public KOrg::BaseView
public slots:
virtual void updateView();
- virtual void showDates(const QDate &start, const QDate &end);
+ virtual void showDates(const TQDate &start, const TQDate &end);
virtual void showIncidences( const Incidence::List &incidenceList );
void changeIncidenceDisplay(Incidence *, int);
protected:
- void appendEvent( Incidence *, const QDateTime &start = QDateTime(),
- const QDateTime &end = QDateTime() );
+ void appendEvent( Incidence *, const TQDateTime &start = TQDateTime(),
+ const TQDateTime &end = TQDateTime() );
void appendTodo( Incidence * );
private slots:
- void showIncidence(const QString &);
+ void showIncidence(const TQString &);
private:
- QTextBrowser *mView;
- QString mText;
- QDate mStartDate;
- QDate mEndDate;
+ TQTextBrowser *mView;
+ TQString mText;
+ TQDate mStartDate;
+ TQDate mEndDate;
Incidence::List mTodos;
};