summaryrefslogtreecommitdiffstats
path: root/korganizer/kowhatsnextview.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 /korganizer/kowhatsnextview.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 '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;
};