If you look at the conversion and character set code at the bottom of
string.cpp (and the #includes), maybe someone will think that it should be moved into a separate file. (I'd agree but not bother yet.) (And someone added literals without _T() in imaggif.cpp again) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2164 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user