decod = new gifDecoder(&stream);
if (decod->readgif(&igif) != E_OK) {
- wxLogDebug("Error reading GIF");
+ wxLogDebug(_T("Error reading GIF"));
delete decod;
return FALSE;
}
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;
}