diff options
Diffstat (limited to 'korganizer/datenavigatorcontainer.h')
-rw-r--r-- | korganizer/datenavigatorcontainer.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/korganizer/datenavigatorcontainer.h b/korganizer/datenavigatorcontainer.h index 07be7cbf0..2facad303 100644 --- a/korganizer/datenavigatorcontainer.h +++ b/korganizer/datenavigatorcontainer.h @@ -25,7 +25,7 @@ #ifndef DATENAVIGATORCONTAINER_H #define DATENAVIGATORCONTAINER_H -#include <qframe.h> +#include <tqframe.h> class KDateNavigator; @@ -33,7 +33,7 @@ class DateNavigatorContainer: public QFrame { Q_OBJECT public: - DateNavigatorContainer( QWidget *parent = 0, const char *name = 0 ); + DateNavigatorContainer( TQWidget *parent = 0, const char *name = 0 ); ~DateNavigatorContainer(); /** @@ -41,8 +41,8 @@ class DateNavigatorContainer: public QFrame */ void setCalendar( Calendar * ); - QSize minimumSizeHint() const; - QSize sizeHint() const; + TQSize minimumSizeHint() const; + TQSize sizeHint() const; public slots: void selectDates( const KCal::DateList & ); @@ -53,9 +53,9 @@ class DateNavigatorContainer: public QFrame signals: void datesSelected( const KCal::DateList & ); - void incidenceDropped( Incidence *, const QDate & ); - void incidenceDroppedMove( Incidence *, const QDate & ); - void weekClicked( const QDate &); + void incidenceDropped( Incidence *, const TQDate & ); + void incidenceDroppedMove( Incidence *, const TQDate & ); + void weekClicked( const TQDate &); void goPrevious(); void goNext(); @@ -68,12 +68,12 @@ class DateNavigatorContainer: public QFrame void goMonth( int month ); protected: - void resizeEvent( QResizeEvent * ); - void setBaseDates( const QDate &start ); + void resizeEvent( TQResizeEvent * ); + void setBaseDates( const TQDate &start ); void connectNavigatorView( KDateNavigator *v ); protected slots: /** Resizes all the child elements after the size of the widget - changed. This slot is called by a QTimer::singleShot from + changed. This slot is called by a TQTimer::singleShot from resizeEvent. This makes the UI seem more responsive, since the other parts of the splitter are resized earlier now */ void resizeAllContents(); @@ -83,7 +83,7 @@ class DateNavigatorContainer: public QFrame KCal::Calendar *mCalendar; - QPtrList<KDateNavigator> mExtraViews; + TQPtrList<KDateNavigator> mExtraViews; int mHorizontalCount; int mVerticalCount; |