From fa6657c34cd03841b4031307080225ae84ae9adf Mon Sep 17 00:00:00 2001 From: horchi Date: Thu, 8 Jun 2017 23:25:01 +0200 Subject: 2017-06-08 version 1.1.63 (horchi)\n - change: Improved aux field\n - change: Suppress inactive timers on service interface\n\n --- menu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'menu.c') diff --git a/menu.c b/menu.c index 6f3be32..d24a92a 100644 --- a/menu.c +++ b/menu.c @@ -656,7 +656,7 @@ int cMenuDb::modifyTimer(cDbRow* timerRow, const char* destUuid) { // request 'D'elete of 'old' timer - timerDb->setValue("ACTION", "D"); // = taDelete + timerDb->setCharValue("ACTION", taDelete); timerDb->setValue("SOURCE", Epg2VdrConfig.uuid); timerDb->update(); @@ -665,7 +665,7 @@ int cMenuDb::modifyTimer(cDbRow* timerRow, const char* destUuid) timerDb->copyValues(timerRow, cDBS::ftData); // takeover all data (can be modified by user) timerDb->setValue("ID", 0); // don't care on insert! timerDb->setValue("VDRUUID", destUuid); - timerDb->setValue("ACTION", "C"); // = taCreate + timerDb->setCharValue("ACTION", taCreate); timerDb->setValue("SOURCE", Epg2VdrConfig.uuid); timerDb->insert(); @@ -818,7 +818,7 @@ int cMenuDb::deleteTimer(long timerid) selectTimerById->freeResult(); - timerDb->setValue("ACTION", "D"); // = taDelete + timerDb->setCharValue("ACTION", taDelete); timerDb->setValue("SOURCE", Epg2VdrConfig.uuid); timerDb->update(); -- cgit v1.2.3