summaryrefslogtreecommitdiff
path: root/searchtimer.h
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2014-02-07 16:07:00 +0100
committerlouis <louis.braun@gmx.de>2014-02-07 16:07:00 +0100
commit51df65e90bb7c9805e4d22cefd93a3bb8708beb0 (patch)
treeb3a74c9fba669e7d853028c2633ca237fe92436a /searchtimer.h
parent15ab7fa08b6f99cd436892bbb726c82d086b7f05 (diff)
downloadvdr-plugin-tvguide-51df65e90bb7c9805e4d22cefd93a3bb8708beb0.tar.gz
vdr-plugin-tvguide-51df65e90bb7c9805e4d22cefd93a3bb8708beb0.tar.bz2
order of search timers in search timer list in alphabetical order
Diffstat (limited to 'searchtimer.h')
-rw-r--r--searchtimer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/searchtimer.h b/searchtimer.h
index a5a4f71..f797ebd 100644
--- a/searchtimer.h
+++ b/searchtimer.h
@@ -64,13 +64,14 @@ private:
public:
cTVGuideSearchTimer(void);
virtual ~cTVGuideSearchTimer(void);
+ bool operator < (const cTVGuideSearchTimer& other) const;
void SetEPGSearchString(std::string strTimer) { this->strTimer = strTimer; };
void SetTemplate(std::string tmpl);
bool Parse(bool readTemplate = false);
std::string BuildSearchString(void);
int GetID(void) { return ID; };
//GETTER
- std::string SearchString(void) { return searchString; };
+ std::string SearchString(void) const { return searchString; };
bool Active(void);
bool UseTitle(void) { return useTitle; };
bool UseSubtitle(void) { return useSubtitle; };