]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/imaggif.cpp
Added wxEnableTopLevelWindows(bool enable) for use by wxSafeYield().
[wxWidgets.git] / src / common / imaggif.cpp
index a4ac73ba758d210578a8ebe9f899584f523fec6d..cae432499b8d68dcdf41d99ed3034f3fb4da57cc 100644 (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;
 }