- A few fixes to the hsitogram memory codes

- Many fixes for the triple axis code
This commit is contained in:
cvs
2003-04-10 11:41:22 +00:00
parent bfb09e4593
commit cb4bbbc93c
35 changed files with 482 additions and 171 deletions

9
o2t.c
View File

@ -222,7 +222,14 @@
self->pOmega = pDum;
}
pCom = FindCommand(pSics,theta);
pDum = pCom->pData;
if(pCom != NULL)
{
pDum = pCom->pData;
}
else
{
pDum = NULL;
}
if(GetDrivableInterface(pDum) != NULL){
self->pTheta = pDum;
}