From 33881ea4441221b1ca0789a72c4c7249d923a0df Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: 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 --- src/k3bwriterselectionwidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/k3bwriterselectionwidget.cpp') diff --git a/src/k3bwriterselectionwidget.cpp b/src/k3bwriterselectionwidget.cpp index 41a4f22..720d390 100644 --- a/src/k3bwriterselectionwidget.cpp +++ b/src/k3bwriterselectionwidget.cpp @@ -322,7 +322,7 @@ void K3bWriterSelectionWidget::clearSpeedCombo() void K3bWriterSelectionWidget::insertSpeedItem( int speed ) { - if( !d->speedIndexMap.tqcontains( speed ) ) { + if( !d->speedIndexMap.contains( speed ) ) { d->indexSpeedMap[m_comboSpeed->count()] = speed; d->speedIndexMap[speed] = m_comboSpeed->count(); @@ -367,7 +367,7 @@ void K3bWriterSelectionWidget::setSpeed( int s ) if( d->haveIgnoreSpeed && s < 0 ) m_comboSpeed->setCurrentItem( 1 ); // Ignore - else if( d->speedIndexMap.tqcontains( s ) ) + else if( d->speedIndexMap.contains( s ) ) m_comboSpeed->setCurrentItem( d->speedIndexMap[s] ); else { m_comboSpeed->setCurrentItem( 0 ); // Auto -- cgit v1.2.3