summaryrefslogtreecommitdiffstats
path: root/src/option/k3bcddboptiontab.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 14:59:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 14:59:16 -0600
commit08e6e3d01bc56d3b55c1512164f48d3db762bd53 (patch)
tree5280c4cb6c471a7f2d79e42246fdcda85cc4adfe /src/option/k3bcddboptiontab.cpp
parentf3e58cb8bdc777ffad67ac52847bb63c27e7e436 (diff)
downloadk3b-08e6e3d01bc56d3b55c1512164f48d3db762bd53.tar.gz
k3b-08e6e3d01bc56d3b55c1512164f48d3db762bd53.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'src/option/k3bcddboptiontab.cpp')
-rw-r--r--src/option/k3bcddboptiontab.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/option/k3bcddboptiontab.cpp b/src/option/k3bcddboptiontab.cpp
index b0d845e..b944073 100644
--- a/src/option/k3bcddboptiontab.cpp
+++ b/src/option/k3bcddboptiontab.cpp
@@ -153,7 +153,7 @@ void K3bCddbOptionTab::readSettings()
localCddbDirs.append( "~/.cddb/" );
for( TQStringList::const_iterator it = localCddbDirs.begin(); it != localCddbDirs.end(); ++it )
- (void)new KListViewItem( m_viewLocalDir, m_viewLocalDir->lastItem(), *it );
+ (void)new TDEListViewItem( m_viewLocalDir, m_viewLocalDir->lastItem(), *it );
// old config <= 0.7.3
@@ -177,9 +177,9 @@ void K3bCddbOptionTab::readSettings()
TQString server = buf[0];
int port = buf[1].toInt();
if( s.startsWith("Http") )
- (void)new KListViewItem( m_viewCddbServer, m_viewCddbServer->lastItem(), "Http", server, TQString::number(port) );
+ (void)new TDEListViewItem( m_viewCddbServer, m_viewCddbServer->lastItem(), "Http", server, TQString::number(port) );
else
- (void)new KListViewItem( m_viewCddbServer, m_viewCddbServer->lastItem(), "Cddbp", server, TQString::number(port) );
+ (void)new TDEListViewItem( m_viewCddbServer, m_viewCddbServer->lastItem(), "Cddbp", server, TQString::number(port) );
}
enDisableButtons();
@@ -236,7 +236,7 @@ void K3bCddbOptionTab::slotLocalDirAdd()
return;
++it;
}
- (void)new KListViewItem( m_viewLocalDir, m_viewLocalDir->lastItem(),
+ (void)new TDEListViewItem( m_viewLocalDir, m_viewLocalDir->lastItem(),
localDir );
enDisableButtons();
@@ -256,7 +256,7 @@ void K3bCddbOptionTab::slotLocalDirRemove()
void K3bCddbOptionTab::slotCddbServerAdd()
{
if( !m_editCddbServer->text().isEmpty() ) {
- (void)new KListViewItem( m_viewCddbServer, m_viewCddbServer->lastItem(),
+ (void)new TDEListViewItem( m_viewCddbServer, m_viewCddbServer->lastItem(),
m_comboCddbType->currentText(),
m_editCddbServer->text(),
TQString::number( m_editCddbPort->value() ) );