channellist: fix linking without --enable-pip

Origin commit data
------------------
Commit: 830b5c2aa7
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2016-10-23 (Sun, 23 Oct 2016)
This commit is contained in:
Stefan Seyfried
2016-10-23 17:45:58 +02:00
parent 7ed3ec4f20
commit c246af077c

View File

@@ -1080,10 +1080,12 @@ bool CChannelList::checkLockStatus(neutrino_msg_data_t data, bool pip)
out: out:
if (startvideo) { if (startvideo) {
if(pip) { if(pip) {
#ifdef ENABLE_PIP
if (CNeutrinoApp::getInstance()->StartPip((*chanlist)[selected]->getChannelID())) { if (CNeutrinoApp::getInstance()->StartPip((*chanlist)[selected]->getChannelID())) {
calcSize(); calcSize();
paintBody(); paintBody();
} }
#endif
} else } else
g_RemoteControl->startvideo(); g_RemoteControl->startvideo();
return true; return true;