diff options
-rw-r--r-- | HISTORY.h | 5 | ||||
-rw-r--r-- | menu.h | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -5,7 +5,7 @@ * */ -#define _VERSION "1.1.94" +#define _VERSION "1.1.95" #define VERSION_DATE "11.03.2018" #define DB_API 7 @@ -19,6 +19,9 @@ /* * ------------------------------------ +2018-03-11 version 1.1.95 (horchi) + - bugfix: Fixed uninitialzed variable + 2018-03-11 version 1.1.94 (horchi) - change: Porting to dbapi 7 changes of epgd @@ -319,6 +319,8 @@ class cEpgMenuTextItem : public cOsdItem cEpgMenuTextItem(const char* aId, const char* text) { + row = 0; + id = na; cid = strdup(aId); SetText(text); } |