Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DVR autorec: use 'Start After' and 'Start Before' for the start time …
…window
  • Loading branch information
perexg committed Dec 26, 2014
1 parent e2bd233 commit 75fb7a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/html/dvr_autorec.html
Expand Up @@ -79,13 +79,13 @@
<dd>
On which specific days of the week to find matching programmes.
<p>
<dt><b>Start Time</b>
<dt><b>Start After</b>
<dd>
An event which starts between this "start time" and "start time up to" will be matched (including).
An event which starts between this "start after" and "start before" will be matched (including boundary values).
<p>
<dt><b>Start Up To</b>
<dt><b>Start Before</b>
<dd>
The start up to limit.
An event which starts between this "start after" and "start before" will be matched (including boundary values).
<p>
<dt><b>Priority</b>
<dd>
Expand Down
4 changes: 2 additions & 2 deletions src/dvr/dvr_autorec.c
Expand Up @@ -876,7 +876,7 @@ const idclass_t dvr_autorec_entry_class = {
{
.type = PT_STR,
.id = "start",
.name = "Start Time",
.name = "Start After",
.set = dvr_autorec_entry_class_start_set,
.get = dvr_autorec_entry_class_start_get,
.list = dvr_autorec_entry_class_time_list_,
Expand All @@ -885,7 +885,7 @@ const idclass_t dvr_autorec_entry_class = {
{
.type = PT_STR,
.id = "start_window",
.name = "Start Up To",
.name = "Start Before",
.set = dvr_autorec_entry_class_start_window_set,
.get = dvr_autorec_entry_class_start_window_get,
.list = dvr_autorec_entry_class_time_list_,
Expand Down

0 comments on commit 75fb7a9

Please sign in to comment.