diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:35:48 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-23 15:43:45 +0200 |
commit | feae001a0240fdca57cc68779f59f88e6af49335 (patch) | |
tree | e8c1ef6b2ca3f23c77647b98373ed1750eac267b /src/projects/k3bdatafileview.cpp | |
parent | be2dabe8503655c1f6b8049955c499e4f47a51d7 (diff) | |
download | k3b-feae001a0240fdca57cc68779f59f88e6af49335.tar.gz k3b-feae001a0240fdca57cc68779f59f88e6af49335.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit 5183781c5dddd8447b308c24b2d7f9257bd0bcad)
Diffstat (limited to 'src/projects/k3bdatafileview.cpp')
-rw-r--r-- | src/projects/k3bdatafileview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/projects/k3bdatafileview.cpp b/src/projects/k3bdatafileview.cpp index e5c0e84..2a5c0d4 100644 --- a/src/projects/k3bdatafileview.cpp +++ b/src/projects/k3bdatafileview.cpp @@ -165,7 +165,7 @@ void K3bDataFileView::checkForNewItems() hideEditor(); // add items that are not there yet - for( TQPtrListIterator<K3bDataItem> it( m_currentDir->tqchildren() ); it.current(); ++it ) { + for( TQPtrListIterator<K3bDataItem> it( m_currentDir->children() ); it.current(); ++it ) { if( !m_itemMap.contains( it.current() ) ) { slotItemAdded( it.current() ); } |