summaryrefslogtreecommitdiffstats
path: root/plugins/project
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:35:48 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-23 15:43:45 +0200
commitfeae001a0240fdca57cc68779f59f88e6af49335 (patch)
treee8c1ef6b2ca3f23c77647b98373ed1750eac267b /plugins/project
parentbe2dabe8503655c1f6b8049955c499e4f47a51d7 (diff)
downloadk3b-feae001a0240fdca57cc68779f59f88e6af49335.tar.gz
k3b-feae001a0240fdca57cc68779f59f88e6af49335.zip
Remove additional unneeded tq method conversions
(cherry picked from commit 5183781c5dddd8447b308c24b2d7f9257bd0bcad)
Diffstat (limited to 'plugins/project')
-rw-r--r--plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp b/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp
index 5211b36..f30f802 100644
--- a/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp
+++ b/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp
@@ -203,7 +203,7 @@ void K3bAudioMetainfoRenamerPluginWidget::scanDir( K3bDirItem* dir, TQListViewIt
d->dirItemDict.insert( dir, viewRoot );
- for( TQPtrListIterator<K3bDataItem> it( dir->tqchildren() ); it.current(); ++it ) {
+ for( TQPtrListIterator<K3bDataItem> it( dir->children() ); it.current(); ++it ) {
K3bDataItem* item = it.current();
if( item->isFile() ) {
@@ -334,9 +334,9 @@ TQString K3bAudioMetainfoRenamerPluginWidget::createNewName( K3bFileItem* item )
kdDebug() << "(K3bAudioMetainfoRenamerPluginWidget) file with name "
<< newName << extension << " already exists" << endl;
int i = 1;
- while( existsOtherItemWithSameName( item, newName + TQString( " (%1)").tqarg(i) + extension ) )
+ while( existsOtherItemWithSameName( item, newName + TQString( " (%1)").arg(i) + extension ) )
i++;
- newName.append( TQString( " (%1)").tqarg(i) );
+ newName.append( TQString( " (%1)").arg(i) );
}
// append extension