diff options
author | louis <louis.braun@gmx.de> | 2016-01-26 18:41:40 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2016-01-26 18:41:40 +0100 |
commit | d4ef992f8256d324221d15d3bef967eb044a9a86 (patch) | |
tree | a3cc1c55d016bb107a20bbe59081662e221348fc /timeline.h | |
parent | c341a635d9b0c4dfdd5e2f6ab25f9d94f53ac795 (diff) | |
download | vdr-plugin-tvguideng-d4ef992f8256d324221d15d3bef967eb044a9a86.tar.gz vdr-plugin-tvguideng-d4ef992f8256d324221d15d3bef967eb044a9a86.tar.bz2 |
adaptions skindesigner 0.8.00.2.0
Diffstat (limited to 'timeline.h')
-rw-r--r-- | timeline.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,6 +4,7 @@ #include <set> #include <vdr/tools.h> #include <libskindesignerapi/skindesignerosdbase.h> +#include "definitions.h" #include "config.h" #include "timemanager.h" @@ -11,12 +12,14 @@ class cTimelineElement : public cListObject { private: + static long idCounter; + long id; bool init; time_t elementTime; public: cTimelineElement(time_t elementTime); virtual ~cTimelineElement(void); - long Id(void) { return elementTime; }; + long Id(void) { return id; }; bool IsNew(void); bool IsFullHour(void); string ToString(void) { return *TimeString(elementTime); }; |