aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/dvb.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-07-12 21:10:02 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-07-12 21:10:02 +0000
commitaa3d1162bef321bd2d0effdafce6eb080660a7ca (patch)
tree746d044753c2c2c8b90f48ccb7adab4d7eb472cc /lib/dvb/dvb.cpp
parentb47c326aad25626034d14ffb630628da2f0e8b97 (diff)
downloadenigma2-aa3d1162bef321bd2d0effdafce6eb080660a7ca.tar.gz
enigma2-aa3d1162bef321bd2d0effdafce6eb080660a7ca.zip
remove unneeded signals ( eDVBChannel::m_stateChanged give us the same informations )
Diffstat (limited to 'lib/dvb/dvb.cpp')
-rw-r--r--lib/dvb/dvb.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/dvb/dvb.cpp b/lib/dvb/dvb.cpp
index 35849b4c..ea51d6a1 100644
--- a/lib/dvb/dvb.cpp
+++ b/lib/dvb/dvb.cpp
@@ -334,7 +334,6 @@ RESULT eDVBResourceManager::removeChannel(eDVBChannel *ch)
{
i = m_active_channels.erase(i);
++cnt;
- /* emit */ m_channelRemoved(ch);
} else
++i;
}
@@ -350,18 +349,6 @@ RESULT eDVBResourceManager::connectChannelAdded(const Slot1<void,eDVBChannel*> &
return 0;
}
-RESULT eDVBResourceManager::connectChannelRemoved(const Slot1<void,eDVBChannel*> &channelRemoved, ePtr<eConnection> &connection)
-{
- connection = new eConnection((eDVBResourceManager*)this, m_channelRemoved.connect(channelRemoved));
- return 0;
-}
-
-RESULT eDVBResourceManager::connectChannelRunning(const Slot1<void,iDVBChannel*> &channelRunning, ePtr<eConnection> &connection)
-{
- connection = new eConnection((eDVBResourceManager*)this, m_channelRunning.connect(channelRunning));
- return 0;
-}
-
DEFINE_REF(eDVBChannel);
eDVBChannel::eDVBChannel(eDVBResourceManager *mgr, eDVBAllocatedFrontend *frontend, eDVBAllocatedDemux *demux): m_state(state_idle), m_mgr(mgr)