Compilation fix after r61814.

Trunk change was not completely merged and broke the build, fix it.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@61820 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-09-03 11:03:36 +00:00
parent 1a0b69436c
commit 581b7a97be

View File

@@ -1263,7 +1263,7 @@ void wxURLDataObject::SetURL(const wxString& url)
{
// CFSTR_SHELLURL is always supposed to be ANSI...
wxWX2MBbuf urlMB = (wxWX2MBbuf)url.mbc_str();
if ( urlA )
if ( urlMB )
{
const size_t len = strlen(urlMB);