diff options
Diffstat (limited to 'kradio3/src/debug-profiler.cpp')
-rw-r--r-- | kradio3/src/debug-profiler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kradio3/src/debug-profiler.cpp b/kradio3/src/debug-profiler.cpp index ac2f372..5194b7e 100644 --- a/kradio3/src/debug-profiler.cpp +++ b/kradio3/src/debug-profiler.cpp @@ -49,7 +49,7 @@ void Profiler::startProfile(const TQString &descr) { stopInternalCounter(); - if (m_ProfileData.tqcontains(descr)) { + if (m_ProfileData.contains(descr)) { profile_data &d = m_ProfileData[descr]; d.startCounter = m_internalCounter; } else { @@ -64,7 +64,7 @@ void Profiler::stopProfile (const TQString &descr) { stopInternalCounter(); - if (!descr.isNull() && m_ProfileData.tqcontains(descr)) { + if (!descr.isNull() && m_ProfileData.contains(descr)) { profile_data &d = m_ProfileData[descr]; long long diff = m_internalCounter - d.startCounter; d.accumulatedCounter += diff; |