From 26a52b47a101f92ff1610b9fc28a14d5633f4318 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 3 Jun 2008 12:42:13 +0000 Subject: [PATCH] fix unused parameter warning (ticket #9529) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@53961 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/gtk/animate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/gtk/animate.h b/include/wx/gtk/animate.h index ef51ffe352..1bc82afc18 100644 --- a/include/wx/gtk/animate.h +++ b/include/wx/gtk/animate.h @@ -44,7 +44,7 @@ public: // we can retrieve the delay for a frame only after building // a GdkPixbufAnimationIter... - virtual int GetDelay(unsigned int frame) const { return 0; } + virtual int GetDelay(unsigned int WXUNUSED(frame)) const { return 0; } virtual wxSize GetSize() const;