summaryrefslogtreecommitdiff
path: root/setup-zaphistory.c
diff options
context:
space:
mode:
Diffstat (limited to 'setup-zaphistory.c')
-rw-r--r--setup-zaphistory.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/setup-zaphistory.c b/setup-zaphistory.c
index 93ba52e..b34c3f8 100644
--- a/setup-zaphistory.c
+++ b/setup-zaphistory.c
@@ -73,7 +73,12 @@ cMenuSetupZapHistory::cMenuSetupZapHistory(void)
// add menu items
SetSection(tr("Zaphistory"));
+#if APIVERSNUM >= 20301
+ LOCK_CHANNELS_READ;
+ Add(new cMenuEditIntItem(tr("Number of entries"), &ZapHistorySetup.EntryCount, 0, Channels->Count() ));
+#else
Add(new cMenuEditIntItem(tr("Number of entries"), &ZapHistorySetup.EntryCount, 0, Channels.Count() ));
+#endif
Add(new cMenuEditBoolItem(tr("Hide mainmenu entry"), &ZapHistorySetup.HideMainMenu));
Add(new cMenuEditStraItem(tr("Default view"), &ZapHistorySetup.DummyDefaultView, 2, viewStrs));
Add(new cMenuEditStraItem(tr("Default sort"), &ZapHistorySetup.DummyDefaultSort, 3, sortStrs));