X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e207152c5975dd772c9e868e5095d581b2a4a303..29f7914424a7941e9374a5445f95574f2f041659:/src/common/imaggif.cpp diff --git a/src/common/imaggif.cpp b/src/common/imaggif.cpp index a4ac73ba75..596c9932d5 100644 --- a/src/common/imaggif.cpp +++ b/src/common/imaggif.cpp @@ -375,7 +375,7 @@ bool wxGIFHandler::LoadFile( wxImage *image, wxInputStream& stream ) decod = new gifDecoder(&stream); if (decod->readgif(&igif) != E_OK) { - wxLogDebug("Error reading GIF"); + wxLogDebug(_T("Error reading GIF")); delete decod; return FALSE; } @@ -413,9 +413,10 @@ bool wxGIFHandler::LoadFile( wxImage *image, wxInputStream& stream ) return TRUE; } -bool wxGIFHandler::SaveFile( wxImage *image, wxOutputStream& stream ) +bool wxGIFHandler::SaveFile( wxImage * WXUNUSED(image), + wxOutputStream& WXUNUSED(stream) ) { - wxLogDebug("wxGIFHandler is read-only!!"); + wxLogDebug(_T("wxGIFHandler is read-only!!")); return FALSE; }