summaryrefslogtreecommitdiff
path: root/skinlcarsng.c
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2022-05-24 17:27:53 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2022-05-28 14:47:56 +0200
commitaeb1dc8099631e4ce427e7e07997acf02c75c9cf (patch)
treef9b25af17cbea29ccedeefd9e8a776ac5d12ca22 /skinlcarsng.c
parent87fafc9d6531a2fcb06190005d0486aaf8fe1dc7 (diff)
downloadskin-lcarsng-aeb1dc8099631e4ce427e7e07997acf02c75c9cf.tar.gz
skin-lcarsng-aeb1dc8099631e4ce427e7e07997acf02c75c9cf.tar.bz2
Add volume bar to main menus
Diffstat (limited to 'skinlcarsng.c')
-rw-r--r--skinlcarsng.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/skinlcarsng.c b/skinlcarsng.c
index 5a1b0c4..d0a2ffd 100644
--- a/skinlcarsng.c
+++ b/skinlcarsng.c
@@ -2,6 +2,7 @@
#include <vdr/plugin.h>
#include "config.h"
#include "setup.h"
+#include "status.h"
#include "lcarsng.h"
#if defined(APIVERSNUM) && APIVERSNUM < 10734
@@ -39,9 +40,11 @@ class cPluginLCARSNG : public cPlugin {
cPluginLCARSNG::cPluginLCARSNG(void) {
lcarsng = NULL;
+ statusMonitor = NULL;
}
cPluginLCARSNG::~cPluginLCARSNG() {
+ delete statusMonitor;
}
const char *cPluginLCARSNG::CommandLineHelp(void) {
@@ -64,6 +67,7 @@ bool cPluginLCARSNG::Start(void) {
dsyslog("skinlcarsng: TrueColor OSD found");
cDevice::PrimaryDevice()->ScaleVideo(cRect::Null);
lcarsng = new cLCARSNG;
+ statusMonitor = new cLCARSNGStatusMonitor;
return lcarsng;
}