From 53a26bf7740c4f3f1ca458a5c85ec7569eb813e8 Mon Sep 17 00:00:00 2001 From: Dimitri Schoolwerth Date: Mon, 24 Jan 2005 14:39:20 +0000 Subject: [PATCH] fixed unused param warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31584 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/xti.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ; } -- 2.45.2