Skip to content

Commit

Permalink
sync upstream cppmyth (2.14.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
janbar committed Mar 18, 2020
1 parent 27fbcc2 commit 6956418
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/cppmyth/CMakeLists.txt
Expand Up @@ -17,7 +17,7 @@ endif ()

###############################################################################
# set lib version here
set (CPPMYTH_LIB_VERSION "2.14.0")
set (CPPMYTH_LIB_VERSION "2.14.1")
set (CPPMYTH_LIB_SOVERSION "2")

###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/cppmyth/src/private/mythdto/mythdto75.h
Expand Up @@ -114,7 +114,7 @@ namespace MythDTO75
{ "Inetref", IS_STRING, (setter_t)MythDTO::SetProgram_Inetref },
{ "LastModified", IS_TIME, (setter_t)MythDTO::SetProgram_LastModified },
{ "Stars", IS_STRING, (setter_t)MythDTO::SetProgram_Stars },
{ "Airdate", IS_TIME, (setter_t)MythDTO::SetProgram_Airdate },
{ "Airdate", IS_STRING, (setter_t)MythDTO::SetProgram_Airdate },
{ "AudioProps", IS_UINT16, (setter_t)MythDTO::SetProgram_AudioProps },
{ "VideoProps", IS_UINT16, (setter_t)MythDTO::SetProgram_VideoProps },
{ "SubProps", IS_UINT16, (setter_t)MythDTO::SetProgram_SubProps },
Expand Down
2 changes: 1 addition & 1 deletion lib/cppmyth/src/private/mythdto/program.h
Expand Up @@ -45,7 +45,7 @@ namespace MythDTO
void SetProgram_Inetref(Myth::Program *obj, const char *val) { obj->inetref = val; }
void SetProgram_LastModified(Myth::Program *obj, time_t *val) { obj->lastModified = *val; }
void SetProgram_Stars(Myth::Program *obj, const char *val) { obj->stars = val; }
void SetProgram_Airdate(Myth::Program *obj, time_t *val) { obj->airdate = *val; }
void SetProgram_Airdate(Myth::Program *obj, const char *val) { obj->airdate = val; }
void SetProgram_AudioProps(Myth::Program *obj, uint16_t *val) { obj->audioProps = *val; }
void SetProgram_VideoProps(Myth::Program *obj, uint16_t *val) { obj->videoProps = *val; }
void SetProgram_SubProps(Myth::Program *obj, uint16_t *val) { obj->subProps = *val; }
Expand Down

0 comments on commit 6956418

Please sign in to comment.