git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27256
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
char *content = new char[textSize] ;
GetScrapFlavorData (scrapRef, kTXNTextData, &pastedSize, content );
content[textSize-1] = 0 ;
char *content = new char[textSize] ;
GetScrapFlavorData (scrapRef, kTXNTextData, &pastedSize, content );
content[textSize-1] = 0 ;
+#if wxUSE_UNICODE
+ textCtrl->WriteText( wxString( content , wxConvLocal ) );
+#else
textCtrl->WriteText( wxString( content ) ) ;
textCtrl->WriteText( wxString( content ) ) ;
delete[] content ;
result = noErr ;
}
delete[] content ;
result = noErr ;
}