diff options
Diffstat (limited to 'korganizer/kojournalview.h')
-rw-r--r-- | korganizer/kojournalview.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/korganizer/kojournalview.h b/korganizer/kojournalview.h index 8c147d232..3e48dd710 100644 --- a/korganizer/kojournalview.h +++ b/korganizer/kojournalview.h @@ -42,24 +42,24 @@ class KOJournalView : public KOrg::BaseView { Q_OBJECT public: - KOJournalView( Calendar *calendar, QWidget *parent = 0, + KOJournalView( Calendar *calendar, TQWidget *parent = 0, const char *name = 0); ~KOJournalView(); virtual int currentDateCount(); virtual Incidence::List selectedIncidences(); DateList selectedDates() { return DateList(); } - void appendJournal( Journal*journal, const QDate &dt); + void appendJournal( Journal*journal, const TQDate &dt); CalPrinterBase::PrintType printType(); public slots: // Don't update the view when midnight passed, otherwise we'll have data loss (bug 79145) - virtual void dayPassed( const QDate & ) {} + virtual void dayPassed( const TQDate & ) {} void updateView(); void flushView(); - void showDates( const QDate &start, const QDate &end ); + void showDates( const TQDate &start, const TQDate &end ); void showIncidences( const Incidence::List &incidenceList ); void changeIncidenceDisplay( Incidence *, int ); @@ -75,9 +75,9 @@ class KOJournalView : public KOrg::BaseView void clearEntries(); private: - QScrollView *mSV; - QVBox *mVBox; - QMap<QDate, JournalDateEntry*> mEntries; + TQScrollView *mSV; + TQVBox *mVBox; + TQMap<TQDate, JournalDateEntry*> mEntries; // DateList mSelectedDates; // List of dates to be displayed }; |