#endif
#ifndef WXPRECOMP
-#include "wx/wx.h"
#endif
#include "wx/html/htmltag.h"
else if (state == ST_VALUE && quote == 0)
{
m_ParamNames.Add(pname);
- m_ParamValues.Add(entParser->Parse(pvalue));
+ if (entParser)
+ m_ParamValues.Add(entParser->Parse(pvalue));
+ else
+ m_ParamValues.Add(pvalue);
}
break;
}
// but wxHTML code relies on this... :(
pvalue.MakeUpper();
}
- m_ParamValues.Add(entParser->Parse(pvalue));
+ if (entParser)
+ m_ParamValues.Add(entParser->Parse(pvalue));
+ else
+ m_ParamValues.Add(pvalue);
state = ST_BEFORE_NAME;
}
else