// Name: tests/streams/sstream.cpp
// Purpose: Test wxStringInputStream/wxStringOutputStream
// Author: Vadim Zeitlin
-// RCS-ID: $Id$
// Copyright: (c) 2004 Vadim Zeitlin
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
{
wxStringOutputStream sos;
- const wxCharBuffer buf(text.mb_str());
+ const wxCharBuffer buf(text.To8BitData());
sos.Write(buf, buf.length());
CPPUNIT_ASSERT_EQUAL( text, sos.GetString() );