mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-23 07:16:15 +00:00
Changed: Minor changes
This commit is contained in:
parent
31af87fb92
commit
74fd0ba557
3 changed files with 22 additions and 22 deletions
|
@ -169,25 +169,25 @@ namespace NLGUI
|
|||
if( _ColSelR.getNodePtr() != NULL )
|
||||
s = _ColSelR.getNodePtr()->getFullName();
|
||||
else
|
||||
s = "";
|
||||
s.clear();
|
||||
xmlSetProp( node, BAD_CAST "dbcolr", BAD_CAST s.c_str() );
|
||||
|
||||
if( _ColSelG.getNodePtr() != NULL )
|
||||
s = _ColSelG.getNodePtr()->getFullName();
|
||||
else
|
||||
s = "";
|
||||
s.clear();
|
||||
xmlSetProp( node, BAD_CAST "dbcolg", BAD_CAST s.c_str() );
|
||||
|
||||
if( _ColSelB.getNodePtr() != NULL )
|
||||
s = _ColSelB.getNodePtr()->getFullName();
|
||||
else
|
||||
s = "";
|
||||
s.clear();
|
||||
xmlSetProp( node, BAD_CAST "dbcolb", BAD_CAST s.c_str() );
|
||||
|
||||
if( _ColSelA.getNodePtr() != NULL )
|
||||
s = _ColSelA.getNodePtr()->getFullName();
|
||||
else
|
||||
s = "";
|
||||
s.clear();
|
||||
xmlSetProp( node, BAD_CAST "dbcola", BAD_CAST s.c_str() );
|
||||
|
||||
return node;
|
||||
|
|
|
@ -500,7 +500,7 @@ void CSBrickManager::compileBrickProperties()
|
|||
k++;
|
||||
}
|
||||
// get the key and replace text with value
|
||||
if(key.size())
|
||||
if (!key.empty())
|
||||
{
|
||||
// Parse all the brick properties if match the key
|
||||
float value= 0.f;
|
||||
|
|
Loading…
Reference in a new issue