#pragma hdrstop
#endif
+#ifndef WX_PRECOMP
+ #include "wx/crt.h"
+#endif
+
#include "wx/uri.h"
// ---------------------------------------------------------------------------
if (bNormalize)
{
wxStringBufferLength theBuffer(m_path, m_path.length() + 1);
-#if wxUSE_STL || wxUSE_UNICODE_UTF8
- // FIXME-UTF8: have some wxReadWriteStringBuffer instead?
- wxTmemcpy(theBuffer, m_path.c_str(), m_path.length()+1);
-#endif
Normalize(theBuffer, true);
theBuffer.SetLength(wxStrlen(theBuffer));
}
if (bNormalize)
{
wxStringBufferLength theBuffer(m_path, m_path.length() + 1);
-#if wxUSE_STL || wxUSE_UNICODE_UTF8
- // FIXME-UTF8: have some wxReadWriteStringBuffer instead?
- wxTmemcpy(theBuffer, m_path.c_str(), m_path.length()+1);
-#endif
Normalize(theBuffer);
theBuffer.SetLength(wxStrlen(theBuffer));
}