Correct a compiler error

This commit is contained in:
kamel5 2019-05-04 12:59:14 +02:00
parent 8b1651401c
commit c081bc5ca1
1 changed files with 2 additions and 2 deletions

View File

@ -2693,10 +2693,10 @@ void cRecMenuItemSearchTimer::SetPixmaps(void) {
void cRecMenuItemSearchTimer::Draw(void) {
int textX = DrawIcons();
bool timerIsActive = timer.IsActive();
bool timerIsActive = timer.Active();
pixmapText->Fill(clrTransparent);
textX += 20;
cString label = cString::sprintf("\"%s\"", timer.GetSearchString().c_str());
cString label = cString::sprintf("\"%s\"", timer.SearchString().c_str());
cString inactive = cString::sprintf("(%s)", tr("inactive"));
int numTimersActive = timer.GetNumTimers();
int numRecordings = timer.GetNumRecordings();