diff options
Diffstat (limited to 'kcron/ktview.h')
-rw-r--r-- | kcron/ktview.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kcron/ktview.h b/kcron/ktview.h index e25129a..1588661 100644 --- a/kcron/ktview.h +++ b/kcron/ktview.h @@ -16,7 +16,7 @@ #include <config.h> #endif -#include <qwidget.h> +#include <tqwidget.h> class QString; class QListView; @@ -40,7 +40,7 @@ public: /** * Initializes view. */ - KTView (QWidget* parent = 0, const char* name=0); + KTView (TQWidget* parent = 0, const char* name=0); /** * Destructor. @@ -132,33 +132,33 @@ public slots: /** * Pop up context sensitive menu. */ - void slotMenu(QListViewItem* qlvi, const QPoint& qp, int i); + void slotMenu(TQListViewItem* qlvi, const TQPoint& qp, int i); /** * Default action, edit. */ - void slotEdit(QListViewItem* qlvi = 0); + void slotEdit(TQListViewItem* qlvi = 0); protected slots: /** * Set current and update menu */ - void slotSetCurrent (QListViewItem* qlvi); + void slotSetCurrent (TQListViewItem* qlvi); protected: /** * Resize view contents. */ - virtual void resizeEvent (QResizeEvent* = 0); + virtual void resizeEvent (TQResizeEvent* = 0); private: /** * Get absolute path of command. */ - QString absolute() const; + TQString absolute() const; /** * Refresh view from underlying objects. @@ -173,7 +173,7 @@ private: /** * Tree view of the crontab entries. */ - QListView* listView; + TQListView* listView; /** * Current user's crontab. |