X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcreaDevManagerLib%2FmodelCDMLibrary.cpp;h=58cc8929b669dea3741d889e30b937d297f34fae;hb=6a43a8cc1e5216f06e41799fbe154b2b1ef6d44b;hp=f67999c06748b6441a43c538d07b7cbeb3a2c45c;hpb=698d779d5af904401fa3640f9a2e1c9a3f4aad28;p=crea.git diff --git a/lib/creaDevManagerLib/modelCDMLibrary.cpp b/lib/creaDevManagerLib/modelCDMLibrary.cpp index f67999c..58cc892 100644 --- a/lib/creaDevManagerLib/modelCDMLibrary.cpp +++ b/lib/creaDevManagerLib/modelCDMLibrary.cpp @@ -81,7 +81,7 @@ modelCDMLibrary::modelCDMLibrary(modelCDMIProjectTreeNode* parent, const std::st if(wordBits[0] == "LIBRARY_NAME") { word = wordBits[1]; - for (int i = 2; i < wordBits.size(); i++) + for (int i = 2; i < (int)(wordBits.size()); i++) { word += " " + wordBits[i]; } @@ -151,7 +151,7 @@ bool modelCDMLibrary::SetNameLibrary(const std::string& fileName, std::string*& std::vector words; CDMUtilities::splitter::split(words, fileName, ", /\\\"", CDMUtilities::splitter::no_empties); std::string fileNameReal = words[0]; - for (int i = 1; i < words.size(); i++) + for (int i = 1; i < (int)(words.size()); i++) { fileNameReal += "-" + words[i]; } @@ -236,7 +236,7 @@ const bool modelCDMLibrary::Refresh(std::string*& result) if(wordBits[0] == "LIBRARY_NAME") { word = wordBits[1]; - for (int i = 2; i < wordBits.size(); i++) + for (int i = 2; i < (int)(wordBits.size()); i++) { word += " " + wordBits[i]; } @@ -263,7 +263,7 @@ const bool modelCDMLibrary::Refresh(std::string*& result) std::string stdfileName = crea::wx2std(fileName); //check if they already exist bool found = false; - for (int i = 0; !found && i < this->folders.size(); i++) + for (int i = 0; !found && i < (int)(this->folders.size()); i++) { if (this->folders[i]->GetName() == stdfileName) { @@ -309,7 +309,7 @@ const bool modelCDMLibrary::Refresh(std::string*& result) else { bool found = false; - for (int i = 0; !found && i < this->children.size(); i++) + for (int i = 0; !found && i < (int)(this->children.size()); i++) { if (this->children[i]->GetName() == stdfileName) { @@ -331,7 +331,7 @@ const bool modelCDMLibrary::Refresh(std::string*& result) } } - for (int i = 0; i < checkedFolders.size(); i++) + for (int i = 0; i < (int)(checkedFolders.size()); i++) { if(!checkedFolders[i]) { @@ -340,7 +340,7 @@ const bool modelCDMLibrary::Refresh(std::string*& result) i--; } } - for (int i = 0; i < checked.size(); i++) + for (int i = 0; i < (int)(checked.size()); i++) { if(!checked[i]) { @@ -389,7 +389,7 @@ void modelCDMLibrary::CheckStructure(std::map& properties) { word = words[0]; CDMUtilities::splitter::split(words, word, " ", CDMUtilities::splitter::empties_ok); - for (int i = 0; i < words.size(); i++) + for (int i = 0; i < (int)(words.size()); i++) { if(words[i].substr(0,2) == "//") break; @@ -418,7 +418,7 @@ void modelCDMLibrary::CheckStructure(std::map& properties) { if (words[0] == "${LIBRARY_NAME}_LINK_LIBRARIES") { - for (int i = 1; i < words.size(); i++) + for (int i = 1; i < (int)(words.size()); i++) { properties["library " + this->name + " lib " + words[i]] = true; }