]> git.saurik.com Git - wxWidgets.git/commitdiff
Someone must have committed some ASCII string literals while I wasn't looking.
authorOve Kaaven <ovek@arcticnet.no>
Tue, 13 Apr 1999 16:15:04 +0000 (16:15 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Tue, 13 Apr 1999 16:15:04 +0000 (16:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2145 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/imaggif.cpp

index 02b1499707cf979294d14772b2fe58cb20587ef0..55afee8161c6b6f71df7921426ab234fd972cb15 100644 (file)
@@ -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;