unused param warning with wxUSE_OLE=0

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32715 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-03-10 18:54:53 +00:00
parent 5e9ccdeb95
commit 9205cb3f26

View File

@@ -1224,6 +1224,7 @@ static const wxChar *GetTymedName(DWORD tymed)
#endif // Debug #endif // Debug
#else // not using OLE at all #else // not using OLE at all
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// wxDataObject // wxDataObject
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@@ -1243,13 +1244,14 @@ void wxDataObject::SetAutoDelete()
} }
#ifdef __WXDEBUG__ #ifdef __WXDEBUG__
const wxChar *wxDataObject::GetFormatName(wxDataFormat format) const wxChar *wxDataObject::GetFormatName(wxDataFormat WXUNUSED(format))
{ {
return NULL; return NULL;
} }
#endif #endif // __WXDEBUG__
#endif #endif // wxUSE_DATAOBJ
#endif // wxUSE_OLE/!wxUSE_OLE
#endif