From: Robin Dunn Date: Wed, 20 Oct 1999 17:46:37 +0000 (+0000) Subject: fixed compile error for FINAL=1 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f6aa3903841dd7e65def0a69f01523afaae7cdcc fixed compile error for FINAL=1 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4082 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/ole/dataobj.cpp b/src/msw/ole/dataobj.cpp index a4209d8a43..14ae6ed6a8 100644 --- a/src/msw/ole/dataobj.cpp +++ b/src/msw/ole/dataobj.cpp @@ -43,7 +43,7 @@ #endif #include -#ifndef __WIN32__ +#ifndef __WIN32__ #include #include #endif @@ -482,10 +482,11 @@ STDMETHODIMP wxIDataObject::QueryGetData(FORMATETC *pformatetc) #endif // Debug } else { +#ifdef __WXDEBUG__ wxLogTrace(wxTRACE_OleCalls, wxT("wxIDataObject::QueryGetData: %s unsupported"), wxDataObject::GetFormatName(format)); - +#endif return DV_E_FORMATETC; }