added ctor for wxChar/WCharBuffer from wxCStrData in ANSI/Unicode build to make it possible to compile code like "wxCharBuffer buf = s.c_str()" again (in particular, fixes wxGTK1 compilation)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44924 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-03-19 13:18:02 +00:00
parent e229d82e0e
commit 414b7b4016
2 changed files with 22 additions and 0 deletions

View File

@@ -2013,4 +2013,24 @@ inline wxUniChar wxCStrData::operator[](size_t n) const
return m_str->at(m_offset + n);
}
// ----------------------------------------------------------------------------
// implementation of wx[W]CharBuffer inline methods using wxCStrData
// ----------------------------------------------------------------------------
#if wxUSE_UNICODE
inline wxWCharBuffer::wxWCharBuffer(const wxCStrData& cstr)
: m_str(wxStrdupW(cstr))
{
}
#else // !wxUSE_UNICODE
inline wxCharBuffer::wxCharBuffer(const wxCStrData& cstr)
: m_str(wxStrdupA(cstr))
{
}
#endif // wxUSE_UNICODE/!wxUSE_UNICODE
#endif // _WX_WXSTRINGH__