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 | e05894553004a47b1e2f276bedcf5963b57a3932 (patch) | |
tree | 2c12af14a609c053131e3a463068fa7589e6ac6a /src/resizeoverlay.cpp | |
parent | 60cba8acf96454af45641d6190a3f2ac9f9ff9b0 (diff) | |
download | ktechlab-e05894553004a47b1e2f276bedcf5963b57a3932.tar.gz ktechlab-e05894553004a47b1e2f276bedcf5963b57a3932.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/resizeoverlay.cpp')
-rw-r--r-- | src/resizeoverlay.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resizeoverlay.cpp b/src/resizeoverlay.cpp index c3ad8ef..a34aeb8 100644 --- a/src/resizeoverlay.cpp +++ b/src/resizeoverlay.cpp @@ -63,7 +63,7 @@ void ResizeOverlay::setVisible( bool visible ) ResizeHandle *ResizeOverlay::createResizeHandle( int id, ResizeHandle::DrawType drawType, int xsnap, int ysnap ) { - ResizeHandleMap::iterator it = m_resizeHandleMap.tqfind(id); + ResizeHandleMap::iterator it = m_resizeHandleMap.find(id); if ( it != m_resizeHandleMap.end() ) return it.data(); @@ -76,7 +76,7 @@ ResizeHandle *ResizeOverlay::createResizeHandle( int id, ResizeHandle::DrawType void ResizeOverlay::removeResizeHandle( int id ) { - ResizeHandleMap::iterator it = m_resizeHandleMap.tqfind(id); + ResizeHandleMap::iterator it = m_resizeHandleMap.find(id); if ( it == m_resizeHandleMap.end() ) return; @@ -89,7 +89,7 @@ void ResizeOverlay::removeResizeHandle( int id ) ResizeHandle *ResizeOverlay::resizeHandle( int id ) { - ResizeHandleMap::iterator it = m_resizeHandleMap.tqfind(id); + ResizeHandleMap::iterator it = m_resizeHandleMap.find(id); if ( it != m_resizeHandleMap.end() ) return it.data(); return 0l; |