summaryrefslogtreecommitdiffstats
path: root/kradio3/src/debug-profiler.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit2620ed602b1dc0a7bc3c3135ee12361b1af25405 (patch)
tree382e1bc273f19af4e5dd261f79741046ed9e37c6 /kradio3/src/debug-profiler.cpp
parentfdd75d807795e8fcf6286df1fb185153ac623efd (diff)
downloadtderadio-2620ed602b1dc0a7bc3c3135ee12361b1af25405.tar.gz
tderadio-2620ed602b1dc0a7bc3c3135ee12361b1af25405.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kradio@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kradio3/src/debug-profiler.cpp')
-rw-r--r--kradio3/src/debug-profiler.cpp4
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;