diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-11-10 13:45:48 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2022-06-18 17:03:15 +0200 |
commit | 018a8946b7bf5aa7d05702bcf62a2c3b3a3789b9 (patch) | |
tree | 677288e6413e78feb3fa3b6ce7e41c40df2b41ff /recmenuitem.h | |
parent | c3dbae705abeb60c181bf7006263df4bdfe67019 (diff) | |
download | vdr-plugin-tvguide-018a8946b7bf5aa7d05702bcf62a2c3b3a3789b9.tar.gz vdr-plugin-tvguide-018a8946b7bf5aa7d05702bcf62a2c3b3a3789b9.tar.bz2 |
Rename GetEventValue() to GetEvent()
Diffstat (limited to 'recmenuitem.h')
-rw-r--r-- | recmenuitem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recmenuitem.h b/recmenuitem.h index 4af307a..9e0c877 100644 --- a/recmenuitem.h +++ b/recmenuitem.h @@ -122,7 +122,7 @@ public: virtual time_t GetTimeValue(void) { return 0; }; virtual bool GetBoolValue(void) { return false; }; virtual cString GetStringValue(void) { return cString(""); }; - virtual const cEvent *GetEventValue(void) { return NULL; }; + virtual const cEvent *GetEvent(void) { return NULL; }; virtual const cTimer *GetTimerValue(void) { return NULL; }; virtual eRecMenuState ProcessKey(eKeys Key) { return rmsNotConsumed; }; }; @@ -487,7 +487,7 @@ public: void SetPixmaps(void); void Hide(void); void Show(void); - const cEvent *GetEventValue(void) { return event; }; + const cEvent *GetEvent(void) { return event; }; eRecMenuState ProcessKey(eKeys Key); void Draw(void); }; |