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 /searchtimer.c | |
parent | d0c1519463bc751406da043bc9b6ac4d1fcfb936 (diff) | |
download | vdr-plugin-tvguide-872a0618f8b45d1e8e24f33b4a22add19b64ca4b.tar.gz vdr-plugin-tvguide-872a0618f8b45d1e8e24f33b4a22add19b64ca4b.tar.bz2 |
Cosmetic changes
Diffstat (limited to 'searchtimer.c')
-rw-r--r-- | searchtimer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searchtimer.c b/searchtimer.c index a7b7141..e56ad05 100644 --- a/searchtimer.c +++ b/searchtimer.c @@ -78,7 +78,7 @@ cTVGuideSearchTimer::~cTVGuideSearchTimer(void) { }
bool cTVGuideSearchTimer::operator < (const cTVGuideSearchTimer& other) const {
- std::string searchStringOther = other.SearchString();
+ std::string searchStringOther = other.GetSearchString();
searchStringOther = StrToLowerCase(searchStringOther);
std::string thisSearchString = StrToLowerCase(searchString);
int comp = thisSearchString.compare(searchStringOther);
@@ -520,7 +520,7 @@ std::string cTVGuideSearchTimer::BuildSearchString(void) { return strTimer;
}
-bool cTVGuideSearchTimer::Active(void) {
+bool cTVGuideSearchTimer::IsActive(void) {
if (useAsSearchTimer)
return true;
return false;
|