From 33881ea4441221b1ca0789a72c4c7249d923a0df Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: rename the following methods: tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/k3bthememanager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/k3bthememanager.cpp') diff --git a/src/k3bthememanager.cpp b/src/k3bthememanager.cpp index 3268018..6e86bd6 100644 --- a/src/k3bthememanager.cpp +++ b/src/k3bthememanager.cpp @@ -57,7 +57,7 @@ TQColor K3bTheme::foregroundColor() const const TQPixmap& K3bTheme::pixmap( const TQString& name ) const { - TQMap::const_iterator it = m_pixmapMap.tqfind( name ); + TQMap::const_iterator it = m_pixmapMap.find( name ); if( it != m_pixmapMap.end() ) return *it; @@ -270,7 +270,7 @@ void K3bThemeManager::loadThemes() // every theme dir needs to contain a k3b.theme file for( TQStringList::const_iterator entryIt = entries.begin(); entryIt != entries.end(); ++entryIt ) { TQString themeDir = *dirIt + *entryIt + "/"; - if( !themeNames.tqcontains( *entryIt ) && TQFile::exists( themeDir + "k3b.theme" ) ) { + if( !themeNames.contains( *entryIt ) && TQFile::exists( themeDir + "k3b.theme" ) ) { bool themeValid = true; // check for all nessessary pixmaps (this is a little evil hacking) -- cgit v1.2.3