diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-11 15:11:26 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-11 15:11:26 +0200 |
commit | bff9d78ff3751e35434594c5849c8ba4a085d9d1 (patch) | |
tree | ea121b8dd9898daf8d61fc7a644ae4f2704a7e32 | |
parent | d21b1496f0f80732f290b39610253b857ad7a992 (diff) | |
download | vdr-plugin-tvguide-bff9d78ff3751e35434594c5849c8ba4a085d9d1.tar.gz vdr-plugin-tvguide-bff9d78ff3751e35434594c5849c8ba4a085d9d1.tar.bz2 |
Rename grid.* to gridelement.*
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | channelepg.h | 2 | ||||
-rw-r--r-- | dummygrid.h | 2 | ||||
-rw-r--r-- | epggrid.h | 2 | ||||
-rw-r--r-- | gridelement.c (renamed from grid.c) | 2 | ||||
-rw-r--r-- | gridelement.h (renamed from grid.h) | 0 | ||||
-rw-r--r-- | headergrid.h | 2 | ||||
-rw-r--r-- | statusheader.h | 2 | ||||
-rw-r--r-- | tvguideosd.h | 2 |
9 files changed, 8 insertions, 8 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 timemanager.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 gridelement.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/channelepg.h b/channelepg.h index 4f05af6..4f20bc9 100644 --- a/channelepg.h +++ b/channelepg.h @@ -2,7 +2,7 @@ #define __TVGUIDE_CHANNELEPG_H #include <vdr/tools.h> -#include "grid.h" +#include "gridelement.h" #include "epggrid.h" #include "headergrid.h" #include "switchtimer.h" diff --git a/dummygrid.h b/dummygrid.h index b2af4e9..853afe4 100644 --- a/dummygrid.h +++ b/dummygrid.h @@ -1,7 +1,7 @@ #ifndef __TVGUIDE_DUMMYGRID_H #define __TVGUIDE_DUMMYGRID_H -#include "grid.h" +#include "gridelement.h" #include "channelepg.h" // --- cDummyGrid ------------------------------------------------------------- @@ -2,7 +2,7 @@ #define __TVGUIDE_EPGGRID_H #include <vdr/epg.h> -#include "grid.h" +#include "gridelement.h" // --- cEpgGrid ------------------------------------------------------------- @@ -1,5 +1,5 @@ #include "channelepg.h" -#include "grid.h" +#include "gridelement.h" cGridElement::cGridElement(cChannelEpg *c) { this->column = c; diff --git a/headergrid.h b/headergrid.h index e22ed71..95d7c06 100644 --- a/headergrid.h +++ b/headergrid.h @@ -1,7 +1,7 @@ #ifndef __TVGUIDE_HEADERGRID_H #define __TVGUIDE_HEADERGRID_H -#include "grid.h" +#include "gridelement.h" // --- cHeaderGrid ------------------------------------------------------------- diff --git a/statusheader.h b/statusheader.h index a490a37..15fb719 100644 --- a/statusheader.h +++ b/statusheader.h @@ -2,7 +2,7 @@ #define __TVGUIDE_STATUSHEADER_H #include "styledpixmap.h" -#include "grid.h" +#include "gridelement.h" // --- cStatusHeader ------------------------------------------------------------- diff --git a/tvguideosd.h b/tvguideosd.h index c9e87a6..9ff4c2f 100644 --- a/tvguideosd.h +++ b/tvguideosd.h @@ -2,7 +2,7 @@ #define __TVGUIDE_TVGUIDEOSD_H #include "timemanager.h" -#include "grid.h" +#include "gridelement.h" #include "channelepg.h" #include "statusheader.h" #include "detailview.h" |