diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | da4be7880ff1de6415ab6256afd2514e64f5fa2e (patch) | |
tree | 0862c14883af0435b012f6f592221fc167ed7d91 /ksvg/ecma | |
parent | d0a269b9b0361bf71c5dd5787be0839f9dcace8c (diff) | |
download | tdegraphics-da4be7880ff1de6415ab6256afd2514e64f5fa2e.tar.gz tdegraphics-da4be7880ff1de6415ab6256afd2514e64f5fa2e.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksvg/ecma')
-rw-r--r-- | ksvg/ecma/ksvg_ecma.cpp | 2 | ||||
-rw-r--r-- | ksvg/ecma/ksvg_window.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ksvg/ecma/ksvg_ecma.cpp b/ksvg/ecma/ksvg_ecma.cpp index 2cb17dcd..32bf2993 100644 --- a/ksvg/ecma/ksvg_ecma.cpp +++ b/ksvg/ecma/ksvg_ecma.cpp @@ -175,7 +175,7 @@ void KSVGEcma::addEventListener(KSVGEcmaEventListener *listener) void KSVGEcma::removeEventListener(KSVGEcmaEventListener *listener) { - m_ecmaEventListeners.take(m_ecmaEventListeners.tqfind(listener)); + m_ecmaEventListeners.take(m_ecmaEventListeners.find(listener)); if(m_ecmaEventListeners.count() == 0) m_hasListeners = false; diff --git a/ksvg/ecma/ksvg_window.cpp b/ksvg/ecma/ksvg_window.cpp index 85c05074..ae6024b3 100644 --- a/ksvg/ecma/ksvg_window.cpp +++ b/ksvg/ecma/ksvg_window.cpp @@ -535,7 +535,7 @@ void WindowQObject::clearTimeout(int timerId, bool delAction) if(delAction) { - TQMapIterator<int, ScheduledAction *> it = scheduledActions.tqfind(timerId); + TQMapIterator<int, ScheduledAction *> it = scheduledActions.find(timerId); if(it != scheduledActions.end()) { ScheduledAction *action = *it; @@ -547,7 +547,7 @@ void WindowQObject::clearTimeout(int timerId, bool delAction) void WindowQObject::timerEvent(TQTimerEvent *e) { - TQMapIterator<int, ScheduledAction *> it = scheduledActions.tqfind(e->timerId()); + TQMapIterator<int, ScheduledAction *> it = scheduledActions.find(e->timerId()); if(it != scheduledActions.end()) { ScheduledAction *action = *it; |