diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | styledpixmap.h | 2 | ||||
-rw-r--r-- | timeline.h | 2 | ||||
-rw-r--r-- | timemanager.c (renamed from timer.c) | 2 | ||||
-rw-r--r-- | timemanager.h (renamed from timer.h) | 0 | ||||
-rw-r--r-- | timerconflict.c | 2 | ||||
-rw-r--r-- | tvguideosd.h | 2 |
7 files changed, 6 insertions, 6 deletions
@@ -60,7 +60,7 @@ endif ### The object files (add further files here): -OBJS = $(PLUGIN).o channelepg.o channelgroup.o channelgroups.o channeljump.o config.o detailview.o dummygrid.o epggrid.o fontmanager.o footer.o geometrymanager.o grid.o headergrid.o imagecache.o imageloader.o imagemagickwrapper.o imagescaler.o osdmanager.o recmanager.o recmenu.o recmenuitem.o recmenuview.o recmenus.o searchtimer.o setup.o statusheader.o styledpixmap.o switchtimer.o timeline.o timer.o timerconflict.o tools.o tvguideosd.o view.o +OBJS = $(PLUGIN).o channelepg.o channelgroup.o channelgroups.o channeljump.o config.o detailview.o dummygrid.o epggrid.o fontmanager.o footer.o geometrymanager.o grid.o headergrid.o imagecache.o imageloader.o imagemagickwrapper.o imagescaler.o osdmanager.o recmanager.o recmenu.o recmenuitem.o recmenuview.o recmenus.o searchtimer.o setup.o statusheader.o styledpixmap.o switchtimer.o timeline.o timemanager.o timerconflict.o tools.o tvguideosd.o view.o ### The main target: diff --git a/styledpixmap.h b/styledpixmap.h index af463fe..c0416c5 100644 --- a/styledpixmap.h +++ b/styledpixmap.h @@ -3,7 +3,7 @@ #include <vdr/osd.h> #include <vdr/epg.h> -#include "timer.h" +#include "timemanager.h" #include "config.h" enum eBackgroundType { @@ -1,7 +1,7 @@ #ifndef __TVGUIDE_TIMELINE_H #define __TVGUIDE_TIMELINE_H -#include "timer.h" +#include "timemanager.h" #include "styledpixmap.h" // --- cTimeLine ------------------------------------------------------------- @@ -1,7 +1,7 @@ #include <time.h> #include <vdr/tools.h> #include "config.h" -#include "timer.h" +#include "timemanager.h" cTimeManager::~cTimeManager(void) { } diff --git a/timerconflict.c b/timerconflict.c index e57d6ff..1920a9c 100644 --- a/timerconflict.c +++ b/timerconflict.c @@ -2,7 +2,7 @@ #include <vector> #include <vdr/timers.h> #include "tools.h" -#include "timer.h" +#include "timemanager.h" #include "timerconflict.h" cTVGuideTimerConflict::cTVGuideTimerConflict(void) { diff --git a/tvguideosd.h b/tvguideosd.h index 9b02c70..ee4b750 100644 --- a/tvguideosd.h +++ b/tvguideosd.h @@ -1,7 +1,7 @@ #ifndef __TVGUIDE_TVGUIDEOSD_H #define __TVGUIDE_TVGUIDEOSD_H -#include "timer.h" +#include "timemanager.h" #include "grid.h" #include "channelepg.h" #include "statusheader.h" |