wxCharBuffer inBuf((const char *)NULL);
if (nLength != npos)
{
- wxASSERT_MSG( psz != NULL );
+ wxASSERT( psz != NULL );
wxCharBuffer tmp(nLength);
memcpy(tmp.data(), psz, nLength);
tmp.data()[nLength] = '\0';
wxWCharBuffer inBuf((const wchar_t *)NULL);
if (nLength != npos)
{
- wxASSERT_MSG( pwz != NULL );
+ wxASSERT( pwz != NULL );
wxWCharBuffer tmp(nLength);
memcpy(tmp.data(), pwz, nLength * sizeof(wchar_t));
tmp.data()[nLength] = '\0';