diff options
Diffstat (limited to 'ksim')
-rw-r--r-- | ksim/baselist.h | 2 | ||||
-rw-r--r-- | ksim/library/chart.cpp | 2 | ||||
-rw-r--r-- | ksim/library/themeloader.cpp | 2 | ||||
-rw-r--r-- | ksim/monitors/lm_sensors/sensorbase.cpp | 2 | ||||
-rw-r--r-- | ksim/monitors/snmp/value.cpp | 6 |
5 files changed, 7 insertions, 7 deletions
diff --git a/ksim/baselist.h b/ksim/baselist.h index 5c4391d..b8389e6 100644 --- a/ksim/baselist.h +++ b/ksim/baselist.h @@ -37,7 +37,7 @@ namespace KSim // Make sure our m_baseList instance gets // deleted when KSim exits - qAddPostRoutine(cleanup); + tqAddPostRoutine(cleanup); } if (!object) diff --git a/ksim/library/chart.cpp b/ksim/library/chart.cpp index b9b5e31..62a2328 100644 --- a/ksim/library/chart.cpp +++ b/ksim/library/chart.cpp @@ -46,7 +46,7 @@ class KSim::Chart::Timer if (!m_timer) { m_timer = new TQTimer; m_timer->start(1000); - qAddPostRoutine(cleanup); + tqAddPostRoutine(cleanup); } TQObject::connect(m_timer, TQT_SIGNAL(timeout()), diff --git a/ksim/library/themeloader.cpp b/ksim/library/themeloader.cpp index f6d6474..ff52525 100644 --- a/ksim/library/themeloader.cpp +++ b/ksim/library/themeloader.cpp @@ -886,7 +886,7 @@ KSim::ThemeLoader &KSim::ThemeLoader::self() { if (!m_self) { // is it the first call? m_self = new KSim::ThemeLoader; // create sole instance - qAddPostRoutine(cleanup); + tqAddPostRoutine(cleanup); } return *m_self; // address of sole instance diff --git a/ksim/monitors/lm_sensors/sensorbase.cpp b/ksim/monitors/lm_sensors/sensorbase.cpp index 45251db..df4c6a4 100644 --- a/ksim/monitors/lm_sensors/sensorbase.cpp +++ b/ksim/monitors/lm_sensors/sensorbase.cpp @@ -44,7 +44,7 @@ SensorBase *SensorBase::self() { if (!m_self) { m_self = new SensorBase; - qAddPostRoutine(cleanup); + tqAddPostRoutine(cleanup); } return m_self; diff --git a/ksim/monitors/snmp/value.cpp b/ksim/monitors/snmp/value.cpp index ad707b5..f5e1d20 100644 --- a/ksim/monitors/snmp/value.cpp +++ b/ksim/monitors/snmp/value.cpp @@ -112,7 +112,7 @@ ValueImpl::ValueImpl( variable_list *var ) } #endif default: { - qDebug( "ValueImp: converting from %i to invalid", var->type ); + tqDebug( "ValueImp: converting from %i to invalid", var->type ); type = Value::Invalid; break; } } @@ -214,7 +214,7 @@ int Value::toInt() const switch ( d->type ) { case Int: case TimeTicks: return d->data.toInt(); - case Invalid: qDebug( "cannot convert from invalid to int" ); + case Invalid: tqDebug( "cannot convert from invalid to int" ); default: assert( false ); } assert( false ); @@ -227,7 +227,7 @@ uint Value::toUInt() const case UInt: case Counter: case Gauge: return d->data.toUInt(); - case Invalid: qDebug( "cannot convert from invalid to uint" ); + case Invalid: tqDebug( "cannot convert from invalid to uint" ); default: assert( false ); } assert( false ); |