Something wrong here in pnlXMLRead.cpp, method
Get :
for(int i = m_aName.size(); --i >= 0 && m_aName[i] !=
sName;);
{
if(sName == m_aName[i])
{
m_abDelete[i] = bAutoDelete;
return m_aObject[i];
}
See the ";" at the end of the for !!
It prevents to compile on my computer.
Either remove the ";" or comment all if you really want
an empty loop !
Logged In: YES
user_id=777655
To compile it, just declare the "i" variable out of the for:
int i;
for(i = m_aName.size(); --i >= 0 && m_aName[i] != sName;);
{
....
Bye,
Alvaro