summaryrefslogtreecommitdiffabout
path: root/korganizer/kotimespanview.h
Unidiff
Diffstat (limited to 'korganizer/kotimespanview.h') (more/less context) (show whitespace changes)
-rw-r--r--korganizer/kotimespanview.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/korganizer/kotimespanview.h b/korganizer/kotimespanview.h
index c682ed8..c3e4b41 100644
--- a/korganizer/kotimespanview.h
+++ b/korganizer/kotimespanview.h
@@ -1,10 +1,12 @@
1#ifndef KOTIMESPANVIEW_H 1#ifndef KOTIMESPANVIEW_H
2#define KOTIMESPANVIEW_H 2#define KOTIMESPANVIEW_H
3 3
4#include "koeventview.h" 4#include "koeventview.h"
5//Added by qt3to4:
6#include <Q3PtrList>
5 7
6class KConfig; 8class KConfig;
7class TimeSpanView; 9class TimeSpanView;
8 10
9class KOTimeSpanView : public KOEventView 11class KOTimeSpanView : public KOEventView
10{ 12{
@@ -13,25 +15,25 @@ class KOTimeSpanView : public KOEventView
13 KOTimeSpanView(Calendar *calendar, QWidget *parent = 0, 15 KOTimeSpanView(Calendar *calendar, QWidget *parent = 0,
14 const char *name = 0); 16 const char *name = 0);
15 ~KOTimeSpanView(); 17 ~KOTimeSpanView();
16 18
17 virtual int maxDatesHint(); 19 virtual int maxDatesHint();
18 virtual int currentDateCount(); 20 virtual int currentDateCount();
19 virtual QPtrList<Incidence> selectedIncidences(); 21 virtual Q3PtrList<Incidence> selectedIncidences();
20 DateList selectedDates() 22 DateList selectedDates()
21 {DateList q; 23 {DateList q;
22 return q;} 24 return q;}
23 25
24 void readSettings(); 26 void readSettings();
25 void readSettings( KConfig * ); 27 void readSettings( KConfig * );
26 void writeSettings( KConfig * ); 28 void writeSettings( KConfig * );
27 29
28 public slots: 30 public slots:
29 virtual void updateView(); 31 virtual void updateView();
30 virtual void showDates(const QDate &start, const QDate &end); 32 virtual void showDates(const QDate &start, const QDate &end);
31 virtual void showEvents(QPtrList<Event> eventList); 33 virtual void showEvents(Q3PtrList<Event> eventList);
32 34
33 void changeEventDisplay(Event *, int); 35 void changeEventDisplay(Event *, int);
34 36
35 private: 37 private:
36 void insertItems( const QDate &start, const QDate & end ); 38 void insertItems( const QDate &start, const QDate & end );
37 39