From b932f954f8815ccba418aa03db82af9cde97f946 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:32:42 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- src/kstreamripper.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/kstreamripper.cpp') diff --git a/src/kstreamripper.cpp b/src/kstreamripper.cpp index d386097..4c43d1e 100644 --- a/src/kstreamripper.cpp +++ b/src/kstreamripper.cpp @@ -34,7 +34,7 @@ #include #include #include -#include +#include #include #include #include @@ -191,7 +191,7 @@ void KStreamRipper::tuneInButtonClicked() void KStreamRipper::serviceAdded(DNSSD::RemoteService::Ptr srv) { ProcessListViewItem * proc = new ProcessListViewItem( m_streamsListView, srv->serviceName(), "", ""); - proc->getProcessController()->setUrl( TQString("http://%1:%2%3").tqarg(srv->hostName()).tqarg(srv->port()).tqarg(srv->textData()["path"]) ); + proc->getProcessController()->setUrl( TQString("http://%1:%2%3").arg(srv->hostName()).arg(srv->port()).arg(srv->textData()["path"]) ); proc->getProcessController()->setDescription( i18n("found by Zeroconf") ); proc->getProcessController()->setAutomatic(true); proc->getProcessController()->setService(srv); @@ -269,8 +269,8 @@ void KStreamRipper::selectedNewListItem() ProcessController * ProcCtl = ((ProcessListViewItem*)m_streamsListView->currentItem())->getProcessController(); // reconfigure what the user is allowed to do based on if this process is ripping - m_ripButton->setEnabled( !ProcCtl->gettqStatus() ); - m_stopRipButton->setEnabled( ProcCtl->gettqStatus() ); + m_ripButton->setEnabled( !ProcCtl->getStatus() ); + m_stopRipButton->setEnabled( ProcCtl->getStatus() ); m_tuneInButton->setEnabled( true ); m_deleteStreamButton->setEnabled( !ProcCtl->getAutomatic() ); -- cgit v1.2.1