mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fix compilation under windows
--HG-- branch : item_group
This commit is contained in:
parent
11eeafc12d
commit
27b7131e22
1 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ void CItemGroup::readFrom(xmlNodePtr node)
|
||||||
xmlNodePtr curNode = node->children;
|
xmlNodePtr curNode = node->children;
|
||||||
while(curNode)
|
while(curNode)
|
||||||
{
|
{
|
||||||
if (NLMISC::stricmp((char*)curNode->name, "item") == 0)
|
if (strcmp((char*)curNode->name, "item") == 0)
|
||||||
{
|
{
|
||||||
|
|
||||||
CItem item;
|
CItem item;
|
||||||
|
@ -248,7 +248,7 @@ bool CItemGroupManager::loadGroups()
|
||||||
xmlNodePtr curNode = globalEnclosing->children;
|
xmlNodePtr curNode = globalEnclosing->children;
|
||||||
while (curNode)
|
while (curNode)
|
||||||
{
|
{
|
||||||
if (NLMISC::stricmp((char*)curNode->name, "group") == 0)
|
if (strcmp((char*)curNode->name, "group") == 0)
|
||||||
{
|
{
|
||||||
CItemGroup group;
|
CItemGroup group;
|
||||||
group.readFrom(curNode);
|
group.readFrom(curNode);
|
||||||
|
|
Loading…
Reference in a new issue