- added FindCommandDescriptor to SCinter.*
- modified support for dynamic objects - improved logger system - various fixes
This commit is contained in:
7
obdes.c
7
obdes.c
@ -71,7 +71,6 @@
|
||||
pRes->parNode = NULL;
|
||||
pRes->SaveStatus = DefaultSave;
|
||||
pRes->GetInterface = DefaultGetInterface;
|
||||
pRes->creationCommand = NULL;
|
||||
return pRes;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
@ -157,7 +156,7 @@
|
||||
{
|
||||
if(NULL!=self)
|
||||
{
|
||||
IFSetOption(self->pKeys,keyName,eltValue);
|
||||
self->pKeys = IFSetOption(self->pKeys,keyName,eltValue);
|
||||
}
|
||||
}
|
||||
/*--------------------------------------------------------------------------*/
|
||||
@ -167,7 +166,7 @@
|
||||
{
|
||||
return;
|
||||
}
|
||||
IFSetOption(self->pKeys,"group",group);
|
||||
self->pKeys = IFSetOption(self->pKeys,"group",group);
|
||||
}
|
||||
/*--------------------------------------------------------------------------*/
|
||||
void SetDescriptorDescription(pObjectDescriptor self, char *description)
|
||||
@ -176,7 +175,7 @@
|
||||
{
|
||||
return;
|
||||
}
|
||||
IFSetOption(self->pKeys,"description", description);
|
||||
self->pKeys = IFSetOption(self->pKeys,"description", description);
|
||||
}
|
||||
/*--------------------------------------------------------------------------*/
|
||||
char * GetDescriptorKey(pObjectDescriptor self, char *keyName)
|
||||
|
Reference in New Issue
Block a user