aboutsummaryrefslogtreecommitdiff
path: root/xbmc/addons/PVRClient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/addons/PVRClient.cpp')
-rw-r--r--xbmc/addons/PVRClient.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/xbmc/addons/PVRClient.cpp b/xbmc/addons/PVRClient.cpp
index 4805ccc9d6..b7a64e07d1 100644
--- a/xbmc/addons/PVRClient.cpp
+++ b/xbmc/addons/PVRClient.cpp
@@ -1339,15 +1339,6 @@ PVR_ERROR CPVRClient::CanSeekStream(bool &bCanSeek) const
});
}
-PVR_ERROR CPVRClient::IsTimeshifting(bool &bTimeshifting) const
-{
- bTimeshifting = false;
- return DoAddonCall(__FUNCTION__, [&bTimeshifting](const AddonInstance* addon) {
- bTimeshifting = addon->IsTimeshifting();
- return PVR_ERROR_NO_ERROR;
- });
-}
-
PVR_ERROR CPVRClient::GetStreamTimes(PVR_STREAM_TIMES *times)
{
return DoAddonCall(__FUNCTION__, [&times](const AddonInstance* addon) {