]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed unused param warning
authorDimitri Schoolwerth <dimitri.schoolwerth@gmail.com>
Mon, 24 Jan 2005 14:39:20 +0000 (14:39 +0000)
committerDimitri Schoolwerth <dimitri.schoolwerth@gmail.com>
Mon, 24 Jan 2005 14:39:20 +0000 (14:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31584 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/xti.h

index 8137aa64a80eb5a138c185db44ae7493d5e0eb2a..c2e3b87d0d769bd16dc740584100b9698ec5c451 100644 (file)
@@ -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 ;
     }