From d9a56bdeaf27254ad19694a0c0c277385f0613c0 Mon Sep 17 00:00:00 2001 From: Ove Kaaven Date: Tue, 13 Apr 1999 16:15:04 +0000 Subject: [PATCH] Someone must have committed some ASCII string literals while I wasn't looking. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2145 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/imaggif.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/common/imaggif.cpp b/src/common/imaggif.cpp index 02b1499707..55afee8161 100644 --- a/src/common/imaggif.cpp +++ b/src/common/imaggif.cpp @@ -317,14 +317,14 @@ int gifDecoder::readgif(IMAGEN *img) /* skip most extensions */ while (mygetc() == 0x21) /* separator */ { - wxLogDebug("ugh"); + wxLogDebug(_T("ugh")); if (mygetc() == 0xF9) /* graphic control ext. */ { - wxLogDebug("..."); + wxLogDebug(_T("...")); f->Read(buf, 6); - wxLogDebug("buf[1] is %i (%i)", buf[1], buf[1] & 0x01); + wxLogDebug(_T("buf[1] is %i (%i)"), buf[1], buf[1] & 0x01); if (buf[1] & 0x01) { - wxLogDebug("setting transparen %i", buf[4]); + wxLogDebug(_T("setting transparen %i"), buf[4]); img->transparent = buf[4]; } } @@ -414,12 +414,12 @@ bool wxGIFHandler::LoadFile( wxImage *image, wxInputStream& stream ) } if (igif.transparent != -1) { - wxLogDebug("oko"); + wxLogDebug(_T("oko")); image->SetMaskColour(pal[3 * (igif.transparent) + 0], pal[3 * (igif.transparent) + 0], pal[3 * (igif.transparent) + 0]); image->SetMask(TRUE); } - wxLogDebug("(unsigned int)%i", (unsigned int)-1); + wxLogDebug(_T("(unsigned int)%i"), (unsigned int)-1); free(igif.pal); free(igif.p); return TRUE; -- 2.45.2