fix unused parameters warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-11-10 00:46:11 +00:00
parent ba1a59622e
commit c29bdd5ffe

View File

@@ -509,7 +509,7 @@ wxGraphicsContext::~wxGraphicsContext()
{ {
} }
bool wxGraphicsContext::StartDoc( const wxString& message ) bool wxGraphicsContext::StartDoc(const wxString& WXUNUSED(message))
{ {
return true; 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))
{ {
} }