From: Dimitri Schoolwerth Date: Mon, 24 Jan 2005 14:39:20 +0000 (+0000) Subject: fixed unused param warning X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/53a26bf7740c4f3f1ca458a5c85ec7569eb813e8 fixed unused param warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31584 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/xti.h b/include/wx/xti.h index 8137aa64a8..c2e3b87d0d 100644 --- a/include/wx/xti.h +++ b/include/wx/xti.h @@ -877,7 +877,8 @@ public : wxGenericPropertyAccessor( const wxString &propName ) ; ~wxGenericPropertyAccessor() ; - void RenameProperty( const wxString &oldName , const wxString &newName ) + void RenameProperty( const wxString& WXUNUSED_UNLESS_DEBUG(oldName), + const wxString& newName ) { wxASSERT( oldName == m_propertyName ) ; m_propertyName = newName ; }