diff options
author | louis <louis.braun@gmx.de> | 2014-10-18 16:50:33 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-10-18 16:50:33 +0200 |
commit | 3ef0db807d386553f1842ca0b8b0e931498237e1 (patch) | |
tree | 30f332068706af8f57715925c826fc39c92011a1 /config.h | |
parent | 762115bf818fb11b5f03525d115adad1f40c480d (diff) | |
download | vdr-plugin-skindesigner-3ef0db807d386553f1842ca0b8b0e931498237e1.tar.gz vdr-plugin-skindesigner-3ef0db807d386553f1842ca0b8b0e931498237e1.tar.bz2 |
added date of newest recording in a folder
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -9,6 +9,7 @@ #include <vdr/plugin.h> #include "libcore/fontmanager.h" #include "libcore/imagecache.h" +#include "libcore/recfolderinfo.h" class cDesignerConfig { private: @@ -67,12 +68,14 @@ public: cFontManager *fontManager = NULL; cImageCache *imgCache = NULL; cTheme Theme; + cRecordingsFolderInfo recFolderInfo(Recordings); #else extern bool firstDisplay; extern cDesignerConfig config; extern cFontManager *fontManager; extern cImageCache *imgCache; extern cTheme Theme; + extern cRecordingsFolderInfo recFolderInfo; #endif #endif //__DESIGNER_CONFIG_H |