unused parameter warning fixes for --disable-all-features build

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49829 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-11-11 12:55:43 +00:00
parent 66d0513058
commit 8d22935dcb
6 changed files with 35 additions and 4 deletions

View File

@@ -701,6 +701,9 @@ bool wxBitmap::SaveFile( const wxString &name, wxBitmapType type, const wxPalett
wxImage image = ConvertToImage();
return image.Ok() && image.SaveFile(name, type);
#else // !wxUSE_IMAGE
wxUnusedVar(name);
wxUnusedVar(type);
return false;
#endif // wxUSE_IMAGE
}