X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDocEntry.cxx;h=2d7cfa9433a1e388766282828d546d7077082eb4;hb=eaf1ca262cccaac8f8560427a305f10cc6f9e517;hp=5fcc597f4853aac48d47d0a8fab56bb741d5a538;hpb=4dd42f8153a4d5ea8d2524b3c6670e80232f73b4;p=gdcm.git diff --git a/src/gdcmDocEntry.cxx b/src/gdcmDocEntry.cxx index 5fcc597f..2d7cfa94 100644 --- a/src/gdcmDocEntry.cxx +++ b/src/gdcmDocEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntry.cxx,v $ Language: C++ - Date: $Date: 2004/10/09 03:31:26 $ - Version: $Revision: 1.25 $ + Date: $Date: 2004/10/10 00:42:54 $ + Version: $Revision: 1.26 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -73,7 +73,7 @@ void gdcmDocEntry::Print(std::ostream& os) lgth = GetReadLength(); // ReadLength, as opposed to UsableLength if (lgth == 0xffffffff) { - st = Format("x(ffff)"); // I said : "x(ffff)" ! + st = gdcmUtil::Format("x(ffff)"); // I said : "x(ffff)" ! s.setf(std::ios::left); s << std::setw(10-st.size()) << " "; s << st << " "; @@ -82,7 +82,7 @@ void gdcmDocEntry::Print(std::ostream& os) } else { - st = Format("x(%x)",lgth); + st = gdcmUtil::Format("x(%x)",lgth); s.setf(std::ios::left); s << std::setw(10-st.size()) << " "; s << st << " "; @@ -90,7 +90,7 @@ void gdcmDocEntry::Print(std::ostream& os) s << std::setw(8) << lgth; } s << " Off.: "; - st = Format("x(%x)",o); + st = gdcmUtil::Format("x(%x)",o); s << std::setw(10-st.size()) << " "; s << st << " "; s << std::setw(8) << o;