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 | 6335dc55802871b5a43492f217b6edbb420204c4 (patch) | |
tree | 50c6c8672a52687568edea475614dfe3d98e62e5 /kdf/kdfwidget.cpp | |
parent | 9b8c9f1f9e974ff0176108cfbd8852cd99ea68c8 (diff) | |
download | tdeutils-6335dc55802871b5a43492f217b6edbb420204c4.tar.gz tdeutils-6335dc55802871b5a43492f217b6edbb420204c4.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdf/kdfwidget.cpp')
-rw-r--r-- | kdf/kdfwidget.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kdf/kdfwidget.cpp b/kdf/kdfwidget.cpp index 5fab6a9..c81d5a3 100644 --- a/kdf/kdfwidget.cpp +++ b/kdf/kdfwidget.cpp @@ -343,7 +343,7 @@ void KDFWidget::updateDFDone( void ){ int k=0; item = new CListViewItem( mList, item ); - bool root = disk->mountOptions().tqfind("user",0,false)==-1 ? true : false; + bool root = disk->mountOptions().find("user",0,false)==-1 ? true : false; item->setPixmap( k++, mList->icon( disk->iconName(), root ) ); item->setText( k++, disk->deviceName() ); item->setText( k++, disk->fsType() ); @@ -400,10 +400,10 @@ DiskEntry *KDFWidget::selectedDisk( TQListViewItem *item ) DiskEntry disk(item->text(deviceCol)); disk.setMountPoint(item->text(mntCol)); - // I can't get tqfind() to work. The Disks::compareItems(..) is + // I can't get find() to work. The Disks::compareItems(..) is // never called. // - //int pos=mDiskList->tqfind(disk); + //int pos=mDiskList->find(disk); int pos = -1; for( u_int i=0; i<mDiskList.count(); i++ ) @@ -515,10 +515,10 @@ void KDFWidget::popupMenu( TQListViewItem *item, const TQPoint &p ) if( mStd.fileManager().isEmpty() == false ) { TQString cmd = mStd.fileManager(); - int pos = cmd.tqfind("%m"); + int pos = cmd.find("%m"); if( pos > 0 ) { - cmd = cmd.tqreplace( pos, 2, KProcess::quote(disk->mountPoint()) ) + " &"; + cmd = cmd.replace( pos, 2, KProcess::quote(disk->mountPoint()) ) + " &"; } else { @@ -569,10 +569,10 @@ void KDFWidget::updateDiskBarPixmaps( void ) int i=0; for(TQListViewItem *it=mList->firstChild(); it!=0;it=it->nextSibling(),i++ ) { - // I can't get tqfind() to work. The Disks::compareItems(..) is + // I can't get find() to work. The Disks::compareItems(..) is // never called. // - //int pos=mDiskList->tqfind(disk); + //int pos=mDiskList->find(disk); DiskEntry dummy(it->text(deviceCol)); dummy.setMountPoint(it->text(mntCol)); @@ -609,8 +609,8 @@ void KDFWidget::updateDiskBarPixmaps( void ) p.setPen(black); p.drawRect(0,0,w,h); TQColor c; - if ( (disk->iconName().tqfind("cdrom") != -1) - || (disk->iconName().tqfind("writer") != -1) ) + if ( (disk->iconName().find("cdrom") != -1) + || (disk->iconName().find("writer") != -1) ) c = gray; else c = disk->percentFull() > FULL_PERCENT ? red : darkGreen; |