Merged v2.16

This commit is contained in:
Fred Gleason
2018-03-30 13:51:23 -04:00
43 changed files with 670 additions and 1788 deletions

View File

@@ -610,9 +610,10 @@ void ListClocks::DeleteClock(QString clockname)
base_name.replace(" ","_");
//
// Delete Active Clocks
// Clear Active Clocks
//
sql=QString("delete from SERVICE_CLOCKS where ")+
sql=QString("update SERVICE_CLOCKS set ")+
"CLOCK_NAME=null where "+
"CLOCK_NAME=\""+RDEscapeString(clockname)+"\"";
q=new RDSqlQuery(sql);
delete q;