X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e90c1d2a19361551eb07778280f22be3e759cf64..ed673c6a48b3479beac60a93ff8f44611e44415f:/include/wx/buffer.h diff --git a/include/wx/buffer.h b/include/wx/buffer.h index feb1c3c33f..b91a6cfc78 100644 --- a/include/wx/buffer.h +++ b/include/wx/buffer.h @@ -28,7 +28,7 @@ class wxCharBuffer public: wxCharBuffer(const char *str) { - wxASSERT_MSG( str, T("NULL string in wxCharBuffer") ); + wxASSERT_MSG( str, wxT("NULL string in wxCharBuffer") ); m_str = str ? strdup(str) : (char *)NULL; } @@ -67,7 +67,7 @@ class wxWCharBuffer public: wxWCharBuffer(const wchar_t *wcs) { - wxASSERT_MSG( wcs, T("NULL string in wxWCharBuffer") ); + wxASSERT_MSG( wcs, wxT("NULL string in wxWCharBuffer") ); if (wcs) { size_t siz = (wcslen(wcs)+1)*sizeof(wchar_t);