X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FcreaImageIOWxDumpPanel.cpp;h=15e9966bd78c94949993e6feab431a68f3a5c68b;hb=f5357d5e24ce935ff82ebb98d21dc95185c3528e;hp=610456fd90a17e3654e5e08034decd6bfb6e71bb;hpb=42cd1f59493627931b5068f3dceb401abc4b8c4c;p=creaImageIO.git diff --git a/src/creaImageIOWxDumpPanel.cpp b/src/creaImageIOWxDumpPanel.cpp index 610456f..15e9966 100644 --- a/src/creaImageIOWxDumpPanel.cpp +++ b/src/creaImageIOWxDumpPanel.cpp @@ -27,7 +27,7 @@ #include -#include + #include #include #if defined(USE_GDCM) @@ -199,13 +199,13 @@ namespace creaImageIO std::string resultat; tag = "(" + i_line.substr(0,9) + ")"; - line = i_line.substr(14,i_line.size()-10); - int pos1 = line.find_first_of("["); - int pos2 = line.find_first_of("]"); + line = i_line.substr(14,i_line.size()-10); + int pos1 = (int)line.find_first_of("["); + int pos2 = (int)line.find_first_of("]"); signification = line.substr(pos1+1, pos2-pos1-1); line = line.substr(pos2+1); - pos1 = line.find_first_of("["); - pos2 = line.find_first_of("]"); + pos1 = (int)line.find_first_of("["); + pos2 = (int)line.find_first_of("]"); value = line.substr(pos1+1, pos2-pos1-1); resultat = tag + " " + signification + ": " +value; return resultat;