From: Vadim Zeitlin Date: Fri, 22 Oct 1999 12:27:43 +0000 (+0000) Subject: another BC++ fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c32a8bd4dbc7ce0acb5e22e5558f66a566b23cc8?ds=sidebyside another BC++ fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4132 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/dobjcmn.cpp b/src/common/dobjcmn.cpp index 7ead643ae9..6a40f0b1d9 100644 --- a/src/common/dobjcmn.cpp +++ b/src/common/dobjcmn.cpp @@ -97,7 +97,7 @@ wxDataObjectComposite::GetPreferredFormat(Direction WXUNUSED(dir)) const { wxSimpleDataObjectList::Node *node = m_dataObjects.Item( m_preferred ); - wxCHECK_MSG( node, wxDF_INVALID, wxT("no preferred format") ); + wxCHECK_MSG( node, wxFormatInvalid, wxT("no preferred format") ); wxDataObjectSimple* dataObj = node->GetData();