diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-07-05 15:22:04 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-07-12 14:00:56 +0200 |
commit | 48150be14748717830e42afd548925fde1ef9916 (patch) | |
tree | a1d20763549d19d76ab3d0fd324c6d952e6edf46 | |
parent | d3cddf3ccdc8a02157971822abeed65eec851346 (diff) | |
download | skin-nopacity-48150be14748717830e42afd548925fde1ef9916.tar.gz skin-nopacity-48150be14748717830e42afd548925fde1ef9916.tar.bz2 |
Cosmetic changes
-rw-r--r-- | displaymenu.h | 3 | ||||
-rw-r--r-- | displayvolume.c | 2 | ||||
-rw-r--r-- | helpers.c | 3 | ||||
-rw-r--r-- | helpers.h | 1 |
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(); @@ -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; } - @@ -21,4 +21,5 @@ public: }; cPlugin *GetScraperPlugin(void); + #endif // __HELPERS_H |