diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /korganizer/eventarchiver.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-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/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 */ |