]> Creatis software - gdcm.git/commitdiff
English mistakes
authorjpr <jpr>
Wed, 7 Sep 2005 08:49:58 +0000 (08:49 +0000)
committerjpr <jpr>
Wed, 7 Sep 2005 08:49:58 +0000 (08:49 +0000)
src/gdcmRLEFramesInfo.cxx

index 8a8ed7cb8201a73b27816e0bf802e0187019a03d..4dcd5656abe9ce2d634fd71cf487fe7a5734fef7 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmRLEFramesInfo.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/06/17 12:27:52 $
-  Version:   $Revision: 1.16 $
+  Date:      $Date: 2005/09/07 08:49:58 $
+  Version:   $Revision: 1.17 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -124,13 +124,13 @@ bool RLEFramesInfo::ConvertRLE16BitsFromRLE8Bits(uint8_t *raw, int xSize,
 
    if ( !Util::IsCurrentProcessorBigEndian() )
    { 
-      a = copyRaw;         // begining of 'low bytes'
-      b = a + pixelNumber; // begining of 'hight bytes'
+      a = copyRaw;         // beginning of 'low bytes'
+      b = a + pixelNumber; // beginning of 'hight bytes'
    }
    else
    {
-      b = copyRaw;         // begining of 'low bytes'
-      a = b + pixelNumber; // begining of 'hight bytes'
+      b = copyRaw;         // beginning of 'low bytes'
+      a = b + pixelNumber; // beginning of 'hight bytes'
    } 
 
    // Re order bytes
@@ -143,7 +143,6 @@ bool RLEFramesInfo::ConvertRLE16BitsFromRLE8Bits(uint8_t *raw, int xSize,
       }
    }
 
-
    delete[] copyRaw;
 
    return true;