From f6aa3903841dd7e65def0a69f01523afaae7cdcc Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 20 Oct 1999 17:46:37 +0000 Subject: [PATCH] fixed compile error for FINAL=1 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4082 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/ole/dataobj.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } -- 2.45.2