From: Vadim Zeitlin Date: Mon, 27 Mar 2006 13:46:50 +0000 (+0000) Subject: fixed unused parameter warning X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8c94336825149d5f329eaea77ba32ae5b5fd3a31?ds=inline fixed unused parameter warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38382 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/stdpaths.h b/include/wx/stdpaths.h index 233fc7f3a8..d0b9dee54d 100644 --- a/include/wx/stdpaths.h +++ b/include/wx/stdpaths.h @@ -104,7 +104,8 @@ public: // prefix/share/locale/lang/LC_MESSAGES) virtual wxString GetLocalizedResourcesDir(const wxChar *lang, - ResourceCat category = ResourceCat_None) const + ResourceCat WXUNUSED(category) + = ResourceCat_None) const { return GetResourcesDir() + wxFILE_SEP_PATH + lang; }