summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2021-07-05 15:22:04 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2021-07-12 14:00:56 +0200
commit48150be14748717830e42afd548925fde1ef9916 (patch)
treea1d20763549d19d76ab3d0fd324c6d952e6edf46
parentd3cddf3ccdc8a02157971822abeed65eec851346 (diff)
downloadskin-nopacity-48150be14748717830e42afd548925fde1ef9916.tar.gz
skin-nopacity-48150be14748717830e42afd548925fde1ef9916.tar.bz2
Cosmetic changes
-rw-r--r--displaymenu.h3
-rw-r--r--displayvolume.c2
-rw-r--r--helpers.c3
-rw-r--r--helpers.h1
4 files changed, 4 insertions, 5 deletions
diff --git a/displaymenu.h b/displaymenu.h
index 640e970..7323778 100644
--- a/displaymenu.h
+++ b/displaymenu.h
@@ -3,7 +3,6 @@
#include "nopacity.h"
#include "menuitem.h"
-#include "imagecache.h"
#include <vdr/thread.h>
#include <memory>
@@ -41,7 +40,7 @@ protected:
int Tab(int n);
public:
#ifdef DEPRECATED_SKIN_SETITEMEVENT
- using cSkinDisplayMenu::SetItemEvent;
+ using cSkinDisplayMenu::SetItemEvent;
#endif
cNopacityDisplayMenu(void);
virtual ~cNopacityDisplayMenu(void);
diff --git a/displayvolume.c b/displayvolume.c
index 9d90607..bb0293a 100644
--- a/displayvolume.c
+++ b/displayvolume.c
@@ -50,7 +50,7 @@ cNopacityDisplayVolume::cNopacityDisplayVolume(void) : cThread("DisplayVolume")
pixmapProgressBar = osd->CreatePixmap(2, cRect((geoManager->volumeWidth - geoManager->volumeProgressBarWidth) / 2, (geoManager->volumeHeight - geoManager->volumeProgressBarHeight)*2/3, geoManager->volumeProgressBarWidth, geoManager->volumeProgressBarHeight));
}
-cNopacityDisplayVolume::~cNopacityDisplayVolume() {
+cNopacityDisplayVolume::~cNopacityDisplayVolume(void) {
if (config.GetValue("volumeFadeOutTime")) {
fadeout = true;
Start();
diff --git a/helpers.c b/helpers.c
index 459fad7..7524a58 100644
--- a/helpers.c
+++ b/helpers.c
@@ -164,8 +164,7 @@ std::vector<std::string>& splitstring::split(char delim, int rep) {
cPlugin *GetScraperPlugin(void) {
static cPlugin *pScraper = cPluginManager::GetPlugin("scraper2vdr");
- if( !pScraper ) // if it doesn't exit, try tvscraper
+ if (!pScraper ) // if it doesn't exit, try tvscraper
pScraper = cPluginManager::GetPlugin("tvscraper");
return pScraper;
}
-
diff --git a/helpers.h b/helpers.h
index c3e3eaf..af2a58b 100644
--- a/helpers.h
+++ b/helpers.h
@@ -21,4 +21,5 @@ public:
};
cPlugin *GetScraperPlugin(void);
+
#endif // __HELPERS_H