mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
Correct a compiler error
This commit is contained in:
parent
8b1651401c
commit
c081bc5ca1
@ -2693,10 +2693,10 @@ void cRecMenuItemSearchTimer::SetPixmaps(void) {
|
|||||||
|
|
||||||
void cRecMenuItemSearchTimer::Draw(void) {
|
void cRecMenuItemSearchTimer::Draw(void) {
|
||||||
int textX = DrawIcons();
|
int textX = DrawIcons();
|
||||||
bool timerIsActive = timer.IsActive();
|
bool timerIsActive = timer.Active();
|
||||||
pixmapText->Fill(clrTransparent);
|
pixmapText->Fill(clrTransparent);
|
||||||
textX += 20;
|
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"));
|
cString inactive = cString::sprintf("(%s)", tr("inactive"));
|
||||||
int numTimersActive = timer.GetNumTimers();
|
int numTimersActive = timer.GetNumTimers();
|
||||||
int numRecordings = timer.GetNumRecordings();
|
int numRecordings = timer.GetNumRecordings();
|
||||||
|
Loading…
Reference in New Issue
Block a user