From a518e5080d824422b592e95fb4a9f958b1cd0724 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 13 Nov 2007 01:18:06 +0000 Subject: [PATCH] use standard functions for BSTR handling instead of doing it ourselves incorrectly (fixed patch 1829152) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49882 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/ole/oleutils.h | 19 +++++++---------- src/msw/ole/oleutils.cpp | 40 +++++++---------------------------- 2 files changed, 16 insertions(+), 43 deletions(-) diff --git a/include/wx/msw/ole/oleutils.h b/include/wx/msw/ole/oleutils.h index b70a76ade8..81c063701a 100644 --- a/include/wx/msw/ole/oleutils.h +++ b/include/wx/msw/ole/oleutils.h @@ -208,24 +208,21 @@ class WXDLLEXPORT wxBasicString { public: // ctors & dtor - wxBasicString(const char *sz); wxBasicString(const wxString& str); + wxBasicString(const wxBasicString& bstr); ~wxBasicString(); - void Init(const char* sz); + wxBasicString& operator=(const wxBasicString& bstr); // accessors - // just get the string - operator BSTR() const { return m_wzBuf; } - // retrieve a copy of our string - caller must SysFreeString() it later! - BSTR Get() const { return SysAllocString(m_wzBuf); } + // just get the string + operator BSTR() const { return m_bstrBuf; } + // retrieve a copy of our string - caller must SysFreeString() it later! + BSTR Get() const { return SysAllocString(m_bstrBuf); } private: - // @@@ not implemented (but should be) - wxBasicString(const wxBasicString&); - wxBasicString& operator=(const wxBasicString&); - - OLECHAR *m_wzBuf; // actual string + // actual string + BSTR m_bstrBuf; }; #if wxUSE_VARIANT diff --git a/src/msw/ole/oleutils.cpp b/src/msw/ole/oleutils.cpp index ca0289188a..1c37542f38 100644 --- a/src/msw/ole/oleutils.cpp +++ b/src/msw/ole/oleutils.cpp @@ -91,49 +91,25 @@ WXDLLEXPORT wxString wxConvertStringFromOle(BSTR bStr) // wxBasicString // ---------------------------------------------------------------------------- -// ctor takes an ANSI string and transforms it to Unicode -wxBasicString::wxBasicString(const char *sz) +wxBasicString::wxBasicString(const wxString& str) { - Init(sz); + m_bstrBuf = SysAllocString(str.wc_str(*wxConvCurrent)); } -// ctor takes an ANSI or Unicode string and transforms it to Unicode -wxBasicString::wxBasicString(const wxString& str) +wxBasicString::wxBasicString(const wxBasicString& src) { -#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'; -#else - Init(str.c_str()); -#endif + m_bstrBuf = src.Get(); } -// Takes an ANSI string and transforms it to Unicode -void wxBasicString::Init(const char *sz) +wxBasicString& wxBasicString::operator=(const wxBasicString& src) { - // get the size of required buffer - UINT lenAnsi = strlen(sz); -#ifdef __MWERKS__ - UINT lenWide = lenAnsi * 2 ; -#else - UINT lenWide = mbstowcs(NULL, sz, lenAnsi); -#endif - - if ( lenWide > 0 ) { - m_wzBuf = new OLECHAR[lenWide + 1]; - mbstowcs(m_wzBuf, sz, lenAnsi); - m_wzBuf[lenWide] = L'\0'; - } - else { - m_wzBuf = NULL; - } + SysReAllocString(&m_bstrBuf, src); + return *this; } -// dtor frees memory wxBasicString::~wxBasicString() { - delete [] m_wzBuf; + SysFreeString(m_bstrBuf); } #if wxUSE_DATAOBJ -- 2.45.2