Skip to content
Snippets Groups Projects
Commit 43e8ea7b authored by Rolf Bork's avatar Rolf Bork
Browse files

Sync with 2.9 branch.

git-svn-id: https://redoubt.ligo-wa.caltech.edu/svn/advLigoRTS/trunk@3986 6dcd42c9-f523-4c6d-aada-af552506706e
parent 596e785c
No related branches found
No related tags found
No related merge requests found
......@@ -2041,6 +2041,7 @@ sleep(5);
}
switch(tsrVal) {
case SDF_TABLE_DIFFS:
// Need to clear selections when moving between tables.
if(lastTable != SDF_TABLE_DIFFS) {
clearTableSelections(sperror,setErrTable, selectCounter);
confirmVal = 0;
......@@ -2082,13 +2083,21 @@ sleep(5);
lastTable = SDF_TABLE_DIFFS;
break;
case SDF_TABLE_NOT_FOUND:
// Need to clear selections when moving between tables.
if(lastTable != SDF_TABLE_NOT_FOUND) {
clearTableSelections(sperror,setErrTable, selectCounter);
confirmVal = 0;
}
pageDisp = reportSetErrors(pref, chNotFound,unknownChans,pageNum);
status = dbPutField(&sorttableentriesaddr,DBR_LONG,&chNotFound,1);
lastTable = 1;
lastTable = SDF_TABLE_NOT_FOUND;
break;
case SDF_TABLE_NOT_INIT:
if(lastTable != SDF_TABLE_NOT_INIT || wcVal)
noMon = createSortTableEntries(chNum,wcVal,wcstring);
if(lastTable != SDF_TABLE_NOT_INIT) {
clearTableSelections(sperror,setErrTable, selectCounter);
confirmVal = 0;
}
noMon = createSortTableEntries(chNum,wcVal,wcstring);
pageDisp = reportSetErrors(pref, chNotInit, uninitChans,pageNum);
status = dbPutField(&sorttableentriesaddr,DBR_LONG,&chNotInit,1);
lastTable = SDF_TABLE_NOT_INIT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment