diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2013-01-02 19:24:44 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2013-01-02 19:24:44 +0100 |
commit | 5b85d9ca2d3cc4f0800e49c140eac583bf06e9a0 (patch) | |
tree | fcf11775d07a5f941ac9b0becae938323fe34af5 | |
parent | b91509cf7c91def59a084d63fb2c3a523c71760e (diff) | |
download | vdr-plugin-epgsearch-5b85d9ca2d3cc4f0800e49c140eac583bf06e9a0.tar.gz vdr-plugin-epgsearch-5b85d9ca2d3cc4f0800e49c140eac583bf06e9a0.tar.bz2 |
changed mcSetup to mcSetupPlugins
-rw-r--r-- | changrp.c | 8 | ||||
-rw-r--r-- | epgsearchsetup.c | 4 | ||||
-rw-r--r-- | menu_blacklistedit.c | 4 | ||||
-rw-r--r-- | menu_blacklists.c | 4 | ||||
-rw-r--r-- | menu_deftimercheckmethod.c | 4 |
5 files changed, 12 insertions, 12 deletions
@@ -305,8 +305,8 @@ void cMenuChannelGroupItem::Set(void) cMenuChannelGroups::cMenuChannelGroups(char** GroupName) :cOsdMenu(tr("Channel groups"),20) { -#if VDRVERSNUM >= 10728 - SetMenuCategory(mcSetup); +#if VDRVERSNUM >= 10734 + SetMenuCategory(mcSetupPlugins); #endif groupSel = -1; groupName = GroupName; @@ -410,8 +410,8 @@ eOSState cMenuChannelGroups::ProcessKey(eKeys Key) cMenuEditChannelGroup::cMenuEditChannelGroup(cChannelGroup *Group, bool New) :cOsdMenu(tr("Edit channel group"),30) { -#if VDRVERSNUM >= 10728 - SetMenuCategory(mcSetup); +#if VDRVERSNUM >= 10734 + SetMenuCategory(mcSetupPlugins); #endif group = Group; channelSel = group->CreateChannelSel(); diff --git a/epgsearchsetup.c b/epgsearchsetup.c index 521fd84..55d14bd 100644 --- a/epgsearchsetup.c +++ b/epgsearchsetup.c @@ -54,8 +54,8 @@ const char *cMenuSetupMailNotification::MailBoxChars = " abcdefghijklmnopqrs cMenuSetupSubMenu::cMenuSetupSubMenu(const char* Title, cEPGSearchConfig* Data) : cOsdMenu(Title, 33) { -#if VDRVERSNUM >= 10728 - SetMenuCategory(mcSetup); +#if VDRVERSNUM >= 10734 + SetMenuCategory(mcSetupPlugins); #endif data = Data; } diff --git a/menu_blacklistedit.c b/menu_blacklistedit.c index d568376..e793a02 100644 --- a/menu_blacklistedit.c +++ b/menu_blacklistedit.c @@ -42,8 +42,8 @@ extern const char AllowedChars[]; cMenuBlacklistEdit::cMenuBlacklistEdit(cBlacklist *Blacklist, bool New) :cOsdMenu(tr("Edit blacklist"),32) { -#if VDRVERSNUM >= 10728 - SetMenuCategory(mcSetup); +#if VDRVERSNUM >= 10734 + SetMenuCategory(mcSetupPlugins); #endif SearchModes[0] = strdup(tr("phrase")); SearchModes[1] = strdup(tr("all words")); diff --git a/menu_blacklists.c b/menu_blacklists.c index 932d425..6f5a57c 100644 --- a/menu_blacklists.c +++ b/menu_blacklists.c @@ -99,8 +99,8 @@ int cMenuBlacklistsItem::Compare(const cListObject &ListObject) const cMenuBlacklists::cMenuBlacklists() :cOsdMenu(tr("Blacklists"), 3, 20, 11, 6, 5) { -#if VDRVERSNUM >= 10728 - SetMenuCategory(mcSetup); +#if VDRVERSNUM >= 10734 + SetMenuCategory(mcSetupPlugins); #endif cMutexLock BlacklistLock(&Blacklists); cBlacklist *Blacklist = Blacklists.First(); diff --git a/menu_deftimercheckmethod.c b/menu_deftimercheckmethod.c index 2b35288..fd3e1b5 100644 --- a/menu_deftimercheckmethod.c +++ b/menu_deftimercheckmethod.c @@ -120,8 +120,8 @@ void cDefTimerCheckModes::SetMode(const cChannel* channel, int mode) cMenuDefTimerCheckMethod::cMenuDefTimerCheckMethod() :cOsdMenu(tr("Default timer check method"), 20) { -#if VDRVERSNUM >= 10728 - SetMenuCategory(mcSetup); +#if VDRVERSNUM >= 10734 + SetMenuCategory(mcSetupPlugins); #endif CheckModes[0] = tr("no check"); CheckModes[UPD_CHDUR] = tr("by channel and time"); |