diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-06-16 13:11:28 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-06-16 13:36:05 +0200 |
commit | 872a0618f8b45d1e8e24f33b4a22add19b64ca4b (patch) | |
tree | d6ffc7a2ac0dfe76e4e814e39696ee04c77d7aa0 /recmenuitem.c | |
parent | d0c1519463bc751406da043bc9b6ac4d1fcfb936 (diff) | |
download | vdr-plugin-tvguide-872a0618f8b45d1e8e24f33b4a22add19b64ca4b.tar.gz vdr-plugin-tvguide-872a0618f8b45d1e8e24f33b4a22add19b64ca4b.tar.bz2 |
Cosmetic changes
Diffstat (limited to 'recmenuitem.c')
-rw-r--r-- | recmenuitem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recmenuitem.c b/recmenuitem.c index 058ce5d..9017067 100644 --- a/recmenuitem.c +++ b/recmenuitem.c @@ -2693,10 +2693,10 @@ void cRecMenuItemSearchTimer::SetPixmaps(void) { void cRecMenuItemSearchTimer::Draw(void) { int textX = DrawIcons(); - bool timerIsActive = timer.Active(); + bool timerIsActive = timer.IsActive(); pixmapText->Fill(clrTransparent); textX += 20; - cString label = cString::sprintf("\"%s\"", timer.SearchString().c_str()); + cString label = cString::sprintf("\"%s\"", timer.GetSearchString().c_str()); cString inactive = cString::sprintf("(%s)", tr("inactive")); int numTimersActive = timer.GetNumTimers(); int numRecordings = timer.GetNumRecordings(); @@ -2822,7 +2822,7 @@ void cRecMenuItemFavorite::Draw(void) { int textX = DrawIcons(); pixmapText->Fill(clrTransparent); textX += 20; - cString label = cString::sprintf("\"%s\"", favorite.SearchString().c_str()); + cString label = cString::sprintf("\"%s\"", favorite.GetSearchString().c_str()); pixmapText->DrawText(cPoint(textX, (height - fontLarge->Height())/2), *label, colorText, clrTransparent, fontLarge); } |