]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/imaggif.cpp
Add wxDataViewCtrl::GTKPathToItem() function and use it.
[wxWidgets.git] / src / common / imaggif.cpp
index cd81463b498d8b88d3fbe0c53c23230ecff6d703..fdb9a4971d1af78c4521d8d47c9fe2bb64c1d961 100644 (file)
@@ -89,7 +89,9 @@ bool wxGIFHandler::SaveFile( wxImage * WXUNUSED(image),
                              wxOutputStream& WXUNUSED(stream), bool verbose )
 {
     if (verbose)
+    {
         wxLogDebug(wxT("GIF: the handler is read-only!!"));
+    }
 
     return false;
 }
@@ -107,7 +109,7 @@ int wxGIFHandler::DoGetImageCount( wxInputStream& stream )
     wxGIFErrorCode error = decod.LoadGIF(stream);
     if ( (error != wxGIF_OK) && (error != wxGIF_TRUNCATED) )
         return -1;
-    
+
     // NOTE: this function modifies the current stream position but it's ok
     //       (see wxImageHandler::GetImageCount)