summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY2
-rw-r--r--HISTORY.DE4
-rw-r--r--Makefile8
-rw-r--r--epgsearchtools.h4
-rw-r--r--menu_main.c2
-rw-r--r--menu_whatson.c2
6 files changed, 11 insertions, 11 deletions
diff --git a/HISTORY b/HISTORY
index a2b0aad..203e8e5 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4,7 +4,7 @@ VDR Plugin 'epgsearch' Revision History
2011-xx-xx; Version 1.0.1
new:
- when channel seperators are displayed the filling '-' can cause problems in the output
- of graphtft. Set PLUGIN_EPGSEARCH_SEPP_ITEMS=--- in your Make.config to avoid this. Most
+ of graphlcd. Set PLUGIN_EPGSEARCH_SEP_ITEMS=--- in your Make.config to avoid this. Most
skins (except classic, st:tng) will translate '---' into a single line anyway
(Feature #857, thanks to 'KeineAhnung' for providing a patch)
- search timers are now processed by their descending timer priority. Search timers with the same priority
diff --git a/HISTORY.DE b/HISTORY.DE
index 9ddb6c9..e96fdc5 100644
--- a/HISTORY.DE
+++ b/HISTORY.DE
@@ -3,8 +3,8 @@ VDR Plugin 'epgsearch' Revision History
2011-xx-xx: Version 1.0.1
neu:
-- Wenn Kanalseparatoren angezeigt werden, kann das in der Ausgabe von graphtft Probleme
- machen. Um das zu vermeiden, bitte PLUGIN_EPGSEARCH_SEPP_ITEMS=--- in der Make.config
+- Wenn Kanalseparatoren angezeigt werden, kann das in der Ausgabe von graphlcd Probleme
+ machen. Um das zu vermeiden, bitte PLUGIN_EPGSEARCH_SEP_ITEMS=--- in der Make.config
setzen. Die meisten Skins (ausser classic, st:tng) ersetzen '---' ohnehin in eine durch-
gehende Linie.
(Feature #857, Danke an 'KeineAhnung' für den Patch)
diff --git a/Makefile b/Makefile
index e825194..666aca5 100644
--- a/Makefile
+++ b/Makefile
@@ -165,10 +165,10 @@ endif
### length of the filling '-' in the channel separators, defaults to
### "----------------------------------------"
-### overwrite this with PLUGIN_EPGSEARCH_SEPP_ITEMS=--- in your Make.config
-### to avoid problems with graphtft
-ifdef PLUGIN_EPGSEARCH_SEPP_ITEMS
-DEFINES += -DMENU_SEPPERATOR_ITEMS='"$(PLUGIN_EPGSEARCH_SEPP_ITEMS)"'
+### overwrite this with PLUGIN_EPGSEARCH_SEP_ITEMS=--- in your Make.config
+### to avoid problems with graphlcd
+ifdef PLUGIN_EPGSEARCH_SEP_ITEMS
+DEFINES += -DMENU_SEPERATOR_ITEMS='"$(PLUGIN_EPGSEARCH_SEP_ITEMS)"'
endif
OBJS2 = mainmenushortcut.o epgsearchonly.o
diff --git a/epgsearchtools.h b/epgsearchtools.h
index 14af7a5..cf8075b 100644
--- a/epgsearchtools.h
+++ b/epgsearchtools.h
@@ -74,8 +74,8 @@ using std::string;
#define ISRADIO(x) ((x)->Vpid()==0||(x)->Vpid()==1||(x)->Vpid()==0x1fff)
-#ifndef MENU_SEPPERATOR_ITEMS
- #define MENU_SEPPERATOR_ITEMS "----------------------------------------"
+#ifndef MENU_SEPERATOR_ITEMS
+ #define MENU_SEPERATOR_ITEMS "----------------------------------------"
#endif
#define UPDS_WITH_OSD (1<<1)
diff --git a/menu_main.c b/menu_main.c
index e131b00..516af7a 100644
--- a/menu_main.c
+++ b/menu_main.c
@@ -141,7 +141,7 @@ void cMenuSearchMain::PrepareSchedule(cChannel *Channel)
struct tm *t_lastevent = localtime_r(&lastEventDate, &tm_rLastEvent);
if (t_event->tm_mday != t_lastevent->tm_mday)
{
- cString szSep = cString::sprintf("%s\t %s %s", MENU_SEPPERATOR_ITEMS, GETDATESTRING(Event), MENU_SEPPERATOR_ITEMS);
+ cString szSep = cString::sprintf("%s\t %s %s", MENU_SEPERATOR_ITEMS, GETDATESTRING(Event), MENU_SEPERATOR_ITEMS);
cOsdItem* pSepItem = new cOsdItem(szSep);
pSepItem->SetSelectable(false);
Add(pSepItem);
diff --git a/menu_whatson.c b/menu_whatson.c
index 05af12d..28b432d 100644
--- a/menu_whatson.c
+++ b/menu_whatson.c
@@ -414,7 +414,7 @@ void cMenuWhatsOnSearch::LoadSchedules()
{
if (EPGSearchConfig.showChannelGroups && strlen(Channel->Name()))
{
- cString szGroup = cString::sprintf("%s\t %s %s", MENU_SEPPERATOR_ITEMS, Channel->Name(), MENU_SEPPERATOR_ITEMS);
+ cString szGroup = cString::sprintf("%s\t %s %s", MENU_SEPERATOR_ITEMS, Channel->Name(), MENU_SEPERATOR_ITEMS);
cOsdItem* pGroupItem = new cOsdItem(szGroup);
pGroupItem->SetSelectable(false);
Add(pGroupItem);