git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20279
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
-#pragma implementation
#pragma implementation "clipbrd.h"
#endif
#if wxUSE_UNICODE
wxCharBuffer buf = st.ToAscii() ;
#else
- char* buf = st ;
+ const char* buf = st ;
#endif
char* newdata = new char[strlen(buf)+1] ;
memcpy( newdata , buf , strlen(buf)+1 ) ;
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
-#pragma implementation
#pragma implementation "clipbrd.h"
#endif
#if wxUSE_UNICODE
wxCharBuffer buf = st.ToAscii() ;
#else
- char* buf = st ;
+ const char* buf = st ;
#endif
char* newdata = new char[strlen(buf)+1] ;
memcpy( newdata , buf , strlen(buf)+1 ) ;