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 | 055401d5dbcb7a509b9d6a6414ba3fc55a23eb82 (patch) | |
tree | 00c2014321c12930c673079eb5d736c80a85be45 /kbfxlib/common | |
parent | ba9755cbdc76d556757b1facb56e1c453f67025b (diff) | |
download | kbfx-055401d5dbcb7a509b9d6a6414ba3fc55a23eb82.tar.gz kbfx-055401d5dbcb7a509b9d6a6414ba3fc55a23eb82.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbfx@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbfxlib/common')
-rw-r--r-- | kbfxlib/common/kbfxplasmapixmapprovider.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kbfxlib/common/kbfxplasmapixmapprovider.cpp b/kbfxlib/common/kbfxplasmapixmapprovider.cpp index 8107583..d334a01 100644 --- a/kbfxlib/common/kbfxplasmapixmapprovider.cpp +++ b/kbfxlib/common/kbfxplasmapixmapprovider.cpp @@ -27,7 +27,7 @@ KbfxPlasmaPixmapProvider::addPixmap ( TQString pixmapname ) TQString lFileName = PixmapPath( pixmapname ); TQPixmap * lPixmapPtr = 0; - if ( ( lPixmapPtr = TQPixmapCache::tqfind ( pixmapname ) ) == NULL ) + if ( ( lPixmapPtr = TQPixmapCache::find ( pixmapname ) ) == NULL ) { lPixmapPtr = new TQPixmap ( lFileName ); TQPixmapCache::insert ( pixmapname,lPixmapPtr ); @@ -86,12 +86,12 @@ void KbfxPlasmaPixmapProvider::buildCache() TQPixmapCache::setCacheLimit ( 1024*5 ); static TQStringList m_skinElements; m_skinElements - <<"apptqfind" + <<"appfind" <<"bg" <<"botbg" <<"butterfly" <<"dudebox" - <<"tqfind" + <<"find" <<"hover" <<"indexseparator" <<"listboxbg" @@ -132,7 +132,7 @@ KbfxPlasmaPixmapProvider::pixmap ( const TQString & key ) { TQPixmap* pp; TQPixmap p; - if ( ( pp=TQPixmapCache::tqfind ( key ) ) ) + if ( ( pp=TQPixmapCache::find ( key ) ) ) { return pp; } |