]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/imagtga.cpp
Correct wxDirExists() check in OS X wxFileSystemWatcher implementation.
[wxWidgets.git] / src / common / imagtga.cpp
index 3d412ddeed0dbda906eb425843d460b523396da8..319324ef9a4b66803167442fc97b72ac88b15d21 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        imagtga.cpp
+// Name:        src/common/imagtga.cpp
 // Purpose:     wxImage TGA handler
 // Author:      Seth Jackson
 // CVS-ID:      $Id$
@@ -846,7 +846,7 @@ bool wxTGAHandler::DoCanRead(wxInputStream& stream)
     unsigned char hdr[HDR_SIZE];
     stream.Read(hdr, HDR_SIZE);     // it's ok to modify the stream position here
 
-    // Check wether we can read the file or not.
+    // Check whether we can read the file or not.
 
     short colorType = hdr[HDR_COLORTYPE];
     if ( colorType != wxTGA_UNMAPPED && colorType != wxTGA_MAPPED )