summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorMatti Lehtimäki <matti.lehtimaki@gmail.com>2012-05-05 12:30:22 +0300
committerMatti Lehtimäki <matti.lehtimaki@gmail.com>2012-05-05 12:30:22 +0300
commit3edad9d50e13e140dc0fa1ef1323c7b80e325a78 (patch)
treeb7c4d9e63a5bf0afae3c16aacf86bfa963c7ea55 /regexp.h
parent8877487555503d3615a4b17f9a9809fec2e28944 (diff)
downloadvdr-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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/regexp.h b/regexp.h
index 3016c4c..4e00897 100644
--- a/regexp.h
+++ b/regexp.h
@@ -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_