From: jpr Date: Fri, 11 Feb 2005 16:58:49 +0000 (+0000) Subject: Typo X-Git-Tag: Version1.0.bp~22 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=b7e5f2772866e8cca5941e2daf611cc96a0e2d11;p=gdcm.git Typo --- diff --git a/src/gdcmRLEFramesInfo.cxx b/src/gdcmRLEFramesInfo.cxx index 31f933f3..2c184116 100644 --- a/src/gdcmRLEFramesInfo.cxx +++ b/src/gdcmRLEFramesInfo.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmRLEFramesInfo.cxx,v $ Language: C++ - Date: $Date: 2005/02/02 10:16:02 $ - Version: $Revision: 1.14 $ + Date: $Date: 2005/02/11 17:01:46 $ + Version: $Revision: 1.15 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -95,7 +95,7 @@ bool RLEFramesInfo::DecompressRLEFile( std::ifstream *fp , uint8_t *raw, * \brief We assume Raw contains the decoded RLE pixels but as * 8 bits per pixel. We convert those pixels to 16 bits * per pixel. - * @param raw raw + * @param raw raw * @param xSize x Size * @param ySize y Size * @param numberOfFrames number of frames @@ -129,8 +129,6 @@ bool RLEFramesInfo::ConvertRLE16BitsFromRLE8Bits(uint8_t *raw, int xSize, } delete[] copyRaw; - /// \todo check that operator new [] didn't fail, and sometimes return false - return true; } diff --git a/src/gdcmRLEFramesInfo.h b/src/gdcmRLEFramesInfo.h index c9036b6c..b5f60727 100644 --- a/src/gdcmRLEFramesInfo.h +++ b/src/gdcmRLEFramesInfo.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmRLEFramesInfo.h,v $ Language: C++ - Date: $Date: 2005/02/06 14:43:28 $ - Version: $Revision: 1.18 $ + Date: $Date: 2005/02/11 16:58:49 $ + Version: $Revision: 1.19 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -48,7 +48,7 @@ public: bool DecompressRLEFile( std::ifstream *fp, uint8_t *subRaw, int xSize, int ySize, int zSize, int bitsAllocated ); bool ConvertRLE16BitsFromRLE8Bits( uint8_t *subRaw, int xSize, int ySize, - int NumberOfFrames ); + int numberOfFrames ); void AddFrame(RLEFrame *frame); diff --git a/src/gdcmSerieHelper.h b/src/gdcmSerieHelper.h index 9376c17e..6edc0eff 100644 --- a/src/gdcmSerieHelper.h +++ b/src/gdcmSerieHelper.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmSerieHelper.h,v $ Language: C++ - Date: $Date: 2005/02/06 14:43:28 $ - Version: $Revision: 1.6 $ + Date: $Date: 2005/02/11 17:01:46 $ + Version: $Revision: 1.7 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -51,7 +51,7 @@ public: /// \todo should return bool or throw error ? void AddFileName(std::string const &filename); void SetDirectory(std::string const &dir, bool recursive=false); - void OrderGdcmFileList(GdcmFileList *CoherentGdcmFileList); + void OrderGdcmFileList(GdcmFileList *coherentGdcmFileList); /// \brief Gets the FIRST *coherent* File List. /// Deprecated; kept not to break the API @@ -62,12 +62,12 @@ public: GdcmFileList *GetFirstCoherentFileList(); GdcmFileList *GetNextCoherentFileList(); - GdcmFileList *GetCoherentFileList(std::string SerieUID); + GdcmFileList *GetCoherentFileList(std::string serieUID); private: - bool ImagePositionPatientOrdering(GdcmFileList *CoherentGdcmFileList); - bool ImageNumberOrdering(GdcmFileList *CoherentGdcmFileList); - bool FileNameOrdering(GdcmFileList *CoherentGdcmFileList); + bool ImagePositionPatientOrdering(GdcmFileList *coherentGdcmFileList); + bool ImageNumberOrdering(GdcmFileList *coherentGdcmFileList); + bool FileNameOrdering(GdcmFileList *coherentGdcmFileList); static bool ImageNumberLessThan(File *file1, File *file2); static bool FileNameLessThan(File *file1, File *file2);