X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e207152c5975dd772c9e868e5095d581b2a4a303..372789845514bbe4171026f09744d36b4555a3de:/src/common/imaggif.cpp?ds=sidebyside diff --git a/src/common/imaggif.cpp b/src/common/imaggif.cpp index a4ac73ba75..cae432499b 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; } @@ -415,7 +415,7 @@ bool wxGIFHandler::LoadFile( wxImage *image, wxInputStream& stream ) bool wxGIFHandler::SaveFile( wxImage *image, wxOutputStream& stream ) { - wxLogDebug("wxGIFHandler is read-only!!"); + wxLogDebug(_T("wxGIFHandler is read-only!!")); return FALSE; }