///////////////////////////////////////////////////////////////////////////////
-// Name: ole/oleutils.cpp
+// Name: src/msw/ole/oleutils.cpp
// Purpose: implementation of OLE helper functions
// Author: Vadim Zeitlin
// Modified by:
#pragma hdrstop
#endif
-#include "wx/setup.h"
#include "wx/log.h"
#if wxUSE_OLE
wxBasicString::wxBasicString(const wxString& str)
{
#if wxUSE_UNICODE
- m_wzBuf = new OLECHAR[str.Length() + 1];
- memcpy(m_wzBuf, str.c_str(), str.Length()*2);
- m_wzBuf[str.Length()] = L'\0';
+ m_wzBuf = new OLECHAR[str.length() + 1];
+ memcpy(m_wzBuf, str.c_str(), str.length()*2);
+ m_wzBuf[str.length()] = L'\0';
#else
Init(str.c_str());
#endif
#endif
// wxUSE_OLE
-