From: <sv...@ww...> - 2006-11-21 18:44:31
|
Author: nsmoooose Date: 2006-11-21 10:44:21 -0800 (Tue, 21 Nov 2006) New Revision: 2016 Modified: trunk/csp/csplib/xml/XmlParser.cpp Log: Removed call to MessageBoxA since this resulted in an unresolved external in windows. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=2016 Modified: trunk/csp/csplib/xml/XmlParser.cpp =================================================================== --- trunk/csp/csplib/xml/XmlParser.cpp 2006-11-19 07:39:49 UTC (rev 2015) +++ trunk/csp/csplib/xml/XmlParser.cpp 2006-11-21 18:44:21 UTC (rev 2016) @@ -378,15 +378,7 @@ ,filename,XMLNode::getError(pResults.error),pResults.nLine,pResults.nColumn,s1,s2,s3); // display message -#ifdef WIN32 -#ifndef _XMLPARSER_NO_MESSAGEBOX_ - MessageBoxA(NULL,message,"XML Parsing error",MB_OK|MB_ICONERROR|MB_TOPMOST); -#else printf("%s",message); -#endif -#else - printf("%s",message); -#endif exit(255); } return xnode; |