summaryrefslogtreecommitdiff
path: root/channelgroups.h
diff options
context:
space:
mode:
Diffstat (limited to 'channelgroups.h')
-rw-r--r--channelgroups.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/channelgroups.h b/channelgroups.h
index e53d5b1..19c8e8f 100644
--- a/channelgroups.h
+++ b/channelgroups.h
@@ -4,6 +4,7 @@
#include <set>
#include <vdr/tools.h>
#include <libskindesignerapi/skindesignerosdbase.h>
+#include "definitions.h"
#include "config.h"
// --- cChannelGroup -------------------------------------------------------------
@@ -22,7 +23,7 @@ public:
int StartChannel(void) { return channelStart; };
void SetChannelStop(int stop) { channelStop = stop; };
int StopChannel(void) { return channelStop; };
- string GetName(void) { return name; };
+ const char *GetName(void) { return name.c_str(); };
void Debug(void);
};