X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDict.cxx;h=8887d8b21d6d9ce79deb9cf5e84f395d1506938d;hb=03acf3c119c6657129b8aeae8cb2205e481a105b;hp=78c3f3f3c1a04f89c7b408c39c635f83ae1bd885;hpb=0bbf3772212391cff69ed451c0a089279ee0c27c;p=gdcm.git diff --git a/src/gdcmDict.cxx b/src/gdcmDict.cxx index 78c3f3f3..8887d8b2 100644 --- a/src/gdcmDict.cxx +++ b/src/gdcmDict.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDict.cxx,v $ Language: C++ - Date: $Date: 2005/01/06 17:08:06 $ - Version: $Revision: 1.53 $ + Date: $Date: 2005/01/06 20:03:27 $ + Version: $Revision: 1.54 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -211,12 +211,12 @@ bool Dict::RemoveEntry (TagKey const &key) * \brief removes an already existing Dicom Dictionary Entry, * identified by its group,element number * @param group Dicom group number of the Dicom Element - * @param element Dicom element number of the Dicom Element + * @param elem Dicom element number of the Dicom Element * @return false if Dicom Dictionary Entry doesn't exist */ -bool Dict::RemoveEntry (uint16_t group, uint16_t element) +bool Dict::RemoveEntry (uint16_t group, uint16_t elem) { - return RemoveEntry(DictEntry::TranslateToKey(group, element)); + return RemoveEntry(DictEntry::TranslateToKey(group, elem)); } /**