Skip to content

Commit

Permalink
Merge pull request #3933 from DimitarCC/ci-build-fixes
Browse files Browse the repository at this point in the history
[Fixed] Build error from last commit
  • Loading branch information
littlesat committed Mar 26, 2024
2 parents cc48c0a + afe1d73 commit fbf5974
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions lib/dvb_ci/dvbci_ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ void eDVBCI_UI::gotMessage(const eDVBCIInterfaces::Message &message)
case eDVBCIInterfaces::Message::slotStateChanged:
setState(message.m_slotid, message.m_state);
break;
case eDVBCIInterfaces::Message::slotDecodingStateChanged:
setDecodingState(message.m_slotid, message.m_state);
break;
case eDVBCIInterfaces::Message::mmiSessionDestroyed:
mmiSessionDestroyed(message.m_slotid);
break;
Expand Down
4 changes: 0 additions & 4 deletions lib/gui/elistboxcontent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1036,8 +1036,6 @@ void eListboxPythonMultiContent::paint(gPainter &painter, eWindowStyle &style, c
eListboxStyle *local_style = 0;
eRect sel_clip(m_selection_clip);
bool cursorValid = this->cursorValid();
gRGB border_color;
int border_size = 0;
bool isverticallb = true;

if (sel_clip.valid())
Expand All @@ -1047,8 +1045,6 @@ void eListboxPythonMultiContent::paint(gPainter &painter, eWindowStyle &style, c
if (m_listbox)
{
local_style = m_listbox->getLocalStyle();
border_size = local_style->m_border_size;
border_color = local_style->m_border_color;
isverticallb = m_listbox->getOrientation() == 1;
}

Expand Down
3 changes: 2 additions & 1 deletion lib/python/Components/Converter/PliExtraInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ def createCurrentCaidLabel(info, currentCaid=None):
if dvbCIUI:
for slot in range(NUM_CI):
stateDecoding = dvbCIUI.getDecodingState(slot)
if stateDecoding == 2:
stateSlot = dvbCIUI.getState(slot)
if stateDecoding == 2 and stateSlot not in (-1, 0, 3):
decodingCiSlot = slot

if not pathExists("/tmp/ecm.info") and decodingCiSlot == -1:
Expand Down

0 comments on commit fbf5974

Please sign in to comment.