From e05ab5297d5fa30d53d11175bf26b7faf72ed669 Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Fri, 8 Mar 2013 14:14:26 +0400 Subject: [PATCH] gui/channellist.cpp: use zapit client for PiP --- src/gui/channellist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 75683f9ac..b620186f9 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -782,9 +782,9 @@ int CChannelList::show() else if ( msg == CRCInput::RC_play) { if(SameTP() && CRecordManager::getInstance()->GetRecordMode(chanlist[selected]->channel_id) == CRecordManager::RECMODE_OFF) { if (CZapit::getInstance()->GetPipChannelID() == chanlist[selected]->getChannelID()) { - CZapit::getInstance()->StopPip(); + g_Zapit->stopPip(); } else { - if (!CZapit::getInstance()->StartPip(chanlist[selected]->getChannelID())) + if (!g_Zapit->zapTo_pip(chanlist[selected]->getChannelID())) DisplayErrorMessage(g_Locale->getText(LOCALE_VIDEOMENU_PIP_ERROR)); } paint();