From 802bde46adaf34c239298c1aa2f12f6133087b0c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 25 Nov 2007 13:12:53 +0000 Subject: [PATCH] fix unused parameter warning inside FILEDIRBTN_OVERRIDES git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@50240 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/gtk/filepicker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/gtk/filepicker.h b/include/wx/gtk/filepicker.h index bb91c6d554..976da2a469 100644 --- a/include/wx/gtk/filepicker.h +++ b/include/wx/gtk/filepicker.h @@ -49,7 +49,7 @@ /* so, override wxButton::GTKGetWindow and return NULL as GTK+ doesn't */ \ /* give us access to the internal GdkWindow of a GtkFileChooserButton */ \ protected: \ - virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const \ + virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const \ { return NULL; }