[Xmlstorage-commits] SF.net SVN: xmlstorage: [86] trunk/c++/xmlstorage.h
Brought to you by:
martinfuchs
From: <mar...@us...> - 2008-02-07 21:18:56
|
Revision: 86 http://xmlstorage.svn.sourceforge.net/xmlstorage/?rev=86&view=rev Author: martinfuchs Date: 2008-02-07 13:18:15 -0800 (Thu, 07 Feb 2008) Log Message: ----------- Borland Builder compatibility Modified Paths: -------------- trunk/c++/xmlstorage.h Modified: trunk/c++/xmlstorage.h =================================================================== --- trunk/c++/xmlstorage.h 2008-02-07 21:17:04 UTC (rev 85) +++ trunk/c++/xmlstorage.h 2008-02-07 21:18:15 UTC (rev 86) @@ -202,7 +202,7 @@ #endif #ifdef __BORLANDC__ -#define _strcmpi strcmpi +#define _stricmp stricmp #endif @@ -1930,7 +1930,7 @@ { XS_CHAR buffer[32]; XS_snprintf(buffer, COUNTOF(buffer), XS_INTFMT, _value); - return buffer; + return XS_String(buffer); } protected: @@ -2012,7 +2012,7 @@ { XS_CHAR buffer[32]; XS_snprintf(buffer, COUNTOF(buffer), XS_FLOATFMT, _value); - return buffer; + return XS_String(buffer); } protected: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |