summaryrefslogtreecommitdiff
path: root/epgsearchcfg.c
diff options
context:
space:
mode:
Diffstat (limited to 'epgsearchcfg.c')
-rw-r--r--epgsearchcfg.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/epgsearchcfg.c b/epgsearchcfg.c
index 25fcb42..7124271 100644
--- a/epgsearchcfg.c
+++ b/epgsearchcfg.c
@@ -94,6 +94,16 @@ cEPGSearchConfig::cEPGSearchConfig(void)
sendMailOnConflicts = 0;
}
+cShowMode& cShowMode::operator= (const cShowMode &ShowMode)
+{
+ this->mode = ShowMode.mode;
+ this->seekTime = ShowMode.seekTime;
+ memcpy(this->description, ShowMode.description, sizeof(ShowMode.description));
+ this->useIt = ShowMode.useIt;
+ this->itime = ShowMode.itime;
+ return *this;
+}
+
int cShowMode::Compare(const cListObject &ListObject) const
{
cShowMode *p = (cShowMode *)&ListObject;