diff options
Diffstat (limited to 'korganizer/eventarchiver.h')
-rw-r--r-- | korganizer/eventarchiver.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/korganizer/eventarchiver.h b/korganizer/eventarchiver.h index 2826e7a92..4d5a8544d 100644 --- a/korganizer/eventarchiver.h +++ b/korganizer/eventarchiver.h @@ -25,8 +25,8 @@ #ifndef EVENTARCHIVER_H #define EVENTARCHIVER_H -#include <qobject.h> -#include <qdatetime.h> +#include <tqobject.h> +#include <tqdatetime.h> #include <libkcal/event.h> namespace KCal { @@ -49,7 +49,7 @@ class EventArchiver : public QObject Q_OBJECT public: - EventArchiver( QObject* parent = 0, const char* name = 0 ); + EventArchiver( TQObject* parent = 0, const char* name = 0 ); virtual ~EventArchiver(); /** @@ -59,7 +59,7 @@ class EventArchiver : public QObject * @param widget parent widget for message boxes * Confirmation and "no events to process" dialogs will be shown */ - void runOnce( Calendar* calendar, const QDate& limitDate, QWidget* widget ); + void runOnce( Calendar* calendar, const TQDate& limitDate, TQWidget* widget ); /** * Delete or archive events. This is called regularly, when auto-archiving is enabled @@ -69,16 +69,16 @@ class EventArchiver : public QObject * Note that error dialogs like "cannot save" are shown even if from this method, so widget * should be set in all cases. */ - void runAuto( Calendar* calendar, QWidget* widget, bool withGUI ); + void runAuto( Calendar* calendar, TQWidget* widget, bool withGUI ); signals: void eventsDeleted(); private: - void run( Calendar* calendar, const QDate& limitDate, QWidget* widget, bool withGUI, bool errorIfNone ); + void run( Calendar* calendar, const TQDate& limitDate, TQWidget* widget, bool withGUI, bool errorIfNone ); - void deleteIncidences( Calendar* calendar, const QDate& limitDate, QWidget* widget, const Incidence::List& incidences, bool withGUI ); - void archiveIncidences( Calendar* calendar, const QDate& limitDate, QWidget* widget, const Incidence::List& incidences, bool withGUI ); + void deleteIncidences( Calendar* calendar, const TQDate& limitDate, TQWidget* widget, const Incidence::List& incidences, bool withGUI ); + void archiveIncidences( Calendar* calendar, const TQDate& limitDate, TQWidget* widget, const Incidence::List& incidences, bool withGUI ); }; #endif /* EVENTARCHIVER_H */ |