diff options
Diffstat (limited to 'kmilo/generic')
-rw-r--r-- | kmilo/generic/generic_monitor.cpp | 4 | ||||
-rw-r--r-- | kmilo/generic/generic_monitor.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kmilo/generic/generic_monitor.cpp b/kmilo/generic/generic_monitor.cpp index 6a4e1d2..4e13be1 100644 --- a/kmilo/generic/generic_monitor.cpp +++ b/kmilo/generic/generic_monitor.cpp @@ -42,8 +42,8 @@ using namespace KMilo; -GenericMonitor::GenericMonitor(TQObject *tqparent, const char *name, const TQStringList& args) -: Monitor(tqparent, name, args) +GenericMonitor::GenericMonitor(TQObject *parent, const char *name, const TQStringList& args) +: Monitor(parent, name, args) { _poll = false; m_displayType = Monitor::None; diff --git a/kmilo/generic/generic_monitor.h b/kmilo/generic/generic_monitor.h index 5c35b61..c94606d 100644 --- a/kmilo/generic/generic_monitor.h +++ b/kmilo/generic/generic_monitor.h @@ -51,7 +51,7 @@ class GenericMonitor : public Monitor TQ_OBJECT public: - GenericMonitor(TQObject *tqparent, const char *name, const TQStringList&); + GenericMonitor(TQObject *parent, const char *name, const TQStringList&); virtual ~GenericMonitor(); virtual bool init(); |