From 830b5c2aa75e833afc994774f52b1f32b0493ecc Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 23 Oct 2016 17:45:58 +0200 Subject: [PATCH] channellist: fix linking without --enable-pip --- src/gui/channellist.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 5bb4f06ef..c6c9bafa3 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -1080,10 +1080,12 @@ bool CChannelList::checkLockStatus(neutrino_msg_data_t data, bool pip) out: if (startvideo) { if(pip) { +#ifdef ENABLE_PIP if (CNeutrinoApp::getInstance()->StartPip((*chanlist)[selected]->getChannelID())) { calcSize(); paintBody(); } +#endif } else g_RemoteControl->startvideo(); return true;