summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-07-11 15:11:26 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-07-11 15:11:26 +0200
commitbff9d78ff3751e35434594c5849c8ba4a085d9d1 (patch)
treeea121b8dd9898daf8d61fc7a644ae4f2704a7e32
parentd21b1496f0f80732f290b39610253b857ad7a992 (diff)
downloadvdr-plugin-tvguide-bff9d78ff3751e35434594c5849c8ba4a085d9d1.tar.gz
vdr-plugin-tvguide-bff9d78ff3751e35434594c5849c8ba4a085d9d1.tar.bz2
Rename grid.* to gridelement.*
-rw-r--r--Makefile2
-rw-r--r--channelepg.h2
-rw-r--r--dummygrid.h2
-rw-r--r--epggrid.h2
-rw-r--r--gridelement.c (renamed from grid.c)2
-rw-r--r--gridelement.h (renamed from grid.h)0
-rw-r--r--headergrid.h2
-rw-r--r--statusheader.h2
-rw-r--r--tvguideosd.h2
9 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 8fb9824..fe432a1 100644
--- a/Makefile
+++ b/Makefile
@@ -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 -------------------------------------------------------------
diff --git a/epggrid.h b/epggrid.h
index 7fcef29..eb1a6a1 100644
--- a/epggrid.h
+++ b/epggrid.h
@@ -2,7 +2,7 @@
#define __TVGUIDE_EPGGRID_H
#include <vdr/epg.h>
-#include "grid.h"
+#include "gridelement.h"
// --- cEpgGrid -------------------------------------------------------------
diff --git a/grid.c b/gridelement.c
index 26586ae..afc568e 100644
--- a/grid.c
+++ b/gridelement.c
@@ -1,5 +1,5 @@
#include "channelepg.h"
-#include "grid.h"
+#include "gridelement.h"
cGridElement::cGridElement(cChannelEpg *c) {
this->column = c;
diff --git a/grid.h b/gridelement.h
index 22744ec..22744ec 100644
--- a/grid.h
+++ b/gridelement.h
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"