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:
Ove Kaaven
1999-04-14 19:59:03 +00:00
parent a69f7aa823
commit 3e473156c6
2 changed files with 156 additions and 12 deletions

View File

@@ -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;
}