diff options
Diffstat (limited to 'korganizer/koeventpopupmenu.h')
-rw-r--r-- | korganizer/koeventpopupmenu.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/korganizer/koeventpopupmenu.h b/korganizer/koeventpopupmenu.h index 9d5db17c4..8d4f2df26 100644 --- a/korganizer/koeventpopupmenu.h +++ b/korganizer/koeventpopupmenu.h @@ -27,26 +27,26 @@ // Context menu for event views with standard event actions // -#include <qpopupmenu.h> -#include <qdatetime.h> +#include <tqpopupmenu.h> +#include <tqdatetime.h> namespace KCal { class Incidence; } using namespace KCal; -class KOEventPopupMenu : public QPopupMenu { +class KOEventPopupMenu : public TQPopupMenu { Q_OBJECT public: KOEventPopupMenu(); - void addAdditionalItem(const QIconSet &icon,const QString &text, - const QObject *receiver, const char *member, + void addAdditionalItem(const TQIconSet &icon,const TQString &text, + const TQObject *receiver, const char *member, bool editOnly=false); public slots: - void showIncidencePopup( Incidence *, const QDate & ); + void showIncidencePopup( Incidence *, const TQDate & ); protected slots: void popupShow(); @@ -69,16 +69,16 @@ class KOEventPopupMenu : public QPopupMenu { void copyIncidenceSignal(Incidence *); void pasteIncidenceSignal(); void toggleAlarmSignal(Incidence *); - void dissociateOccurrenceSignal( Incidence *, const QDate & ); - void dissociateFutureOccurrenceSignal( Incidence *, const QDate & ); + void dissociateOccurrenceSignal( Incidence *, const TQDate & ); + void dissociateFutureOccurrenceSignal( Incidence *, const TQDate & ); private: Incidence *mCurrentIncidence; - QDate mCurrentDate; + TQDate mCurrentDate; bool mHasAdditionalItems; - QValueList<int> mEditOnlyItems; - QValueList<int> mRecurrenceItems; + TQValueList<int> mEditOnlyItems; + TQValueList<int> mRecurrenceItems; }; #endif |