diff options
Diffstat (limited to 'libkdepim/kdatepickerpopup.h')
-rw-r--r-- | libkdepim/kdatepickerpopup.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libkdepim/kdatepickerpopup.h b/libkdepim/kdatepickerpopup.h index 70ed6793f..4b5632804 100644 --- a/libkdepim/kdatepickerpopup.h +++ b/libkdepim/kdatepickerpopup.h @@ -42,9 +42,10 @@ @author Bram Schoenmakers <bram_s@softhome.net> */ -class KDE_EXPORT KDatePickerPopup: public QPopupMenu +class KDE_EXPORT KDatePickerPopup: public TQPopupMenu { Q_OBJECT + TQ_OBJECT public: enum { NoDate = 1, DatePicker = 2, Words = 4 }; @@ -53,11 +54,11 @@ class KDE_EXPORT KDatePickerPopup: public QPopupMenu @param items List of all desirable items, separated with a bitwise OR. @param date Initial date of datepicker-widget. - @param parent The object's parent. + @param tqparent The object's tqparent. @param name The object's name. */ KDatePickerPopup( int items = DatePicker, const TQDate &date = TQDate::tqcurrentDate(), - TQWidget *parent = 0, const char *name = 0 ); + TQWidget *tqparent = 0, const char *name = 0 ); /** @return A pointer to the private variable mDatePicker, an instance of |