diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-01-29 03:28:00 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-06-13 17:29:49 +0100 |
commit | 0e3716ee8c8f95c9e0776d168095e49ec102b892 (patch) | |
tree | 37c3e5fa30ec4c38278292455212447532fef41c /p2pvr/devices | |
parent | Explicitly exclude bin dir to stop glob-tree finding cpp files from the previ... (diff) | |
download | p2pvr-0e3716ee8c8f95c9e0776d168095e49ec102b892.tar.bz2 p2pvr-0e3716ee8c8f95c9e0776d168095e49ec102b892.tar.xz p2pvr-0e3716ee8c8f95c9e0776d168095e49ec102b892.zip |
Remove unused tuner type parameter from many places
Diffstat (limited to 'p2pvr/devices')
-rw-r--r-- | p2pvr/devices/localDevices.cpp | 2 | ||||
-rw-r--r-- | p2pvr/devices/localDevices.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/p2pvr/devices/localDevices.cpp b/p2pvr/devices/localDevices.cpp index 4f270dd..00ec395 100644 --- a/p2pvr/devices/localDevices.cpp +++ b/p2pvr/devices/localDevices.cpp @@ -79,7 +79,7 @@ LocalDevices::GetTunerSpecific(const DVBSI::DeliveryPtr & delivery, const Ice::C } P2PVR::TunerPrx -LocalDevices::GetTunerAny(short , const DVBSI::DeliveryPtr & delivery, const Ice::Current & ice) +LocalDevices::GetTunerAny(const DVBSI::DeliveryPtr & delivery, const Ice::Current & ice) { std::lock_guard<std::mutex> g(lock); Logger()->messagebf(LOG_DEBUG, "%s: Searching for an open sharable tuner any frequency", __PRETTY_FUNCTION__); diff --git a/p2pvr/devices/localDevices.h b/p2pvr/devices/localDevices.h index 5521f8d..3c3d51b 100644 --- a/p2pvr/devices/localDevices.h +++ b/p2pvr/devices/localDevices.h @@ -14,7 +14,7 @@ class LocalDevices : public P2PVR::LocalDevices { ~LocalDevices(); P2PVR::TunerPrx GetTunerSpecific(const DVBSI::DeliveryPtr &, const Ice::Current &); - P2PVR::TunerPrx GetTunerAny(short type, const DVBSI::DeliveryPtr &, const Ice::Current &); + P2PVR::TunerPrx GetTunerAny(const DVBSI::DeliveryPtr &, const Ice::Current &); P2PVR::PrivateTunerPrx GetPrivateTuner(short type, const Ice::Current &); void ReleaseTuner(const P2PVR::TunerPrx &, const Ice::Current &); int TunerCount(const Ice::Current &); |