diff options
author | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-05 12:30:22 +0300 |
---|---|---|
committer | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-05 12:30:22 +0300 |
commit | 3edad9d50e13e140dc0fa1ef1323c7b80e325a78 (patch) | |
tree | b7c4d9e63a5bf0afae3c16aacf86bfa963c7ea55 /regexp.h | |
parent | 8877487555503d3615a4b17f9a9809fec2e28944 (diff) | |
download | vdr-plugin-epgfixer-3edad9d50e13e140dc0fa1ef1323c7b80e325a78.tar.gz vdr-plugin-epgfixer-3edad9d50e13e140dc0fa1ef1323c7b80e325a78.tar.bz2 |
Several bugs fixes. Code cleanup. Update history.
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -5,8 +5,8 @@ * */ -#ifndef _REGEXP_H_ -#define _REGEXP_H_ +#ifndef __EPGFIXER_REGEXP_H_ +#define __EPGFIXER_REGEXP_H_ #include "tools.h" #include <vdr/epg.h> @@ -31,7 +31,7 @@ private: public: cRegexp(); virtual ~cRegexp(); - bool Apply(cEvent *Event); + virtual bool Apply(cEvent *Event); void SetFromString(char *string, bool Enabled); int GetSource() { return source; }; void ToggleEnabled(void); @@ -41,4 +41,4 @@ public: // Global instance extern cEpgfixerList<cRegexp> EpgfixerRegexps; -#endif //_REGEXP_H_ +#endif //__EPGFIXER_REGEXP_H_ |