decod = new gifDecoder(&stream);
if (decod->readgif(&igif) != E_OK) {
- wxLogDebug("Error reading GIF");
+ wxLogDebug(_T("Error reading GIF"));
delete decod;
return FALSE;
}
bool wxGIFHandler::SaveFile( wxImage *image, wxOutputStream& stream )
{
- wxLogDebug("wxGIFHandler is read-only!!");
+ wxLogDebug(_T("wxGIFHandler is read-only!!"));
return FALSE;
}