From: Vadim Zeitlin Date: Sat, 10 Nov 2007 00:46:11 +0000 (+0000) Subject: fix unused parameters warnings X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c29bdd5ffe375b2033994f2b59399e79b63973b6?ds=inline fix unused parameters warnings git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/graphcmn.cpp b/src/common/graphcmn.cpp index 0560f39bf0..da313ef55f 100644 --- a/src/common/graphcmn.cpp +++ b/src/common/graphcmn.cpp @@ -509,7 +509,7 @@ wxGraphicsContext::~wxGraphicsContext() { } -bool wxGraphicsContext::StartDoc( const wxString& message ) +bool wxGraphicsContext::StartDoc(const wxString& WXUNUSED(message)) { return true; } @@ -518,7 +518,8 @@ void wxGraphicsContext::EndDoc() { } -void wxGraphicsContext::StartPage( wxDouble width, wxDouble height ) +void wxGraphicsContext::StartPage(wxDouble WXUNUSED(width), + wxDouble WXUNUSED(height)) { }