diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | epgsearchtools.h | 4 | ||||
-rw-r--r-- | menu_main.c | 2 | ||||
-rw-r--r-- | menu_whatson.c | 2 |
4 files changed, 5 insertions, 5 deletions
@@ -168,7 +168,7 @@ endif ### 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)"' +DEFINES += -DMENU_SEPARATOR_ITEMS='"$(PLUGIN_EPGSEARCH_SEP_ITEMS)"' endif OBJS2 = mainmenushortcut.o epgsearchonly.o diff --git a/epgsearchtools.h b/epgsearchtools.h index cf8075b..b984e94 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_SEPERATOR_ITEMS - #define MENU_SEPERATOR_ITEMS "----------------------------------------" +#ifndef MENU_SEPARATOR_ITEMS + #define MENU_SEPARATOR_ITEMS "----------------------------------------" #endif #define UPDS_WITH_OSD (1<<1) diff --git a/menu_main.c b/menu_main.c index 516af7a..3ee3e74 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_SEPERATOR_ITEMS, GETDATESTRING(Event), MENU_SEPERATOR_ITEMS); + cString szSep = cString::sprintf("%s\t %s %s", MENU_SEPARATOR_ITEMS, GETDATESTRING(Event), MENU_SEPARATOR_ITEMS); cOsdItem* pSepItem = new cOsdItem(szSep); pSepItem->SetSelectable(false); Add(pSepItem); diff --git a/menu_whatson.c b/menu_whatson.c index 28b432d..45e8e63 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_SEPERATOR_ITEMS, Channel->Name(), MENU_SEPERATOR_ITEMS); + cString szGroup = cString::sprintf("%s\t %s %s", MENU_SEPARATOR_ITEMS, Channel->Name(), MENU_SEPARATOR_ITEMS); cOsdItem* pGroupItem = new cOsdItem(szGroup); pGroupItem->SetSelectable(false); Add(pGroupItem); |