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 | 33881ea4441221b1ca0789a72c4c7249d923a0df (patch) | |
tree | ffe5603da373bb346bb29c8e0f533776f66560a5 /src/k3bthememanager.cpp | |
parent | 6d99e1e138ae5aafc10f14682c48221bf563152e (diff) | |
download | k3b-33881ea4441221b1ca0789a72c4c7249d923a0df.tar.gz k3b-33881ea4441221b1ca0789a72c4c7249d923a0df.zip |
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
Diffstat (limited to 'src/k3bthememanager.cpp')
-rw-r--r-- | src/k3bthememanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<TQString, TQPixmap>::const_iterator it = m_pixmapMap.tqfind( name ); + TQMap<TQString, TQPixmap>::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) |