X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcreaDevManagerLib%2FmodelCDMApplication.cpp;h=40fb8105b12dbb270f7e2704eb9cd5e7f95a7622;hb=72a6140565ccd0905f822c7bf17ea471762a9301;hp=56c9e08bbae20cdb00db5e66d2042c61c0368bd3;hpb=698d779d5af904401fa3640f9a2e1c9a3f4aad28;p=crea.git diff --git a/lib/creaDevManagerLib/modelCDMApplication.cpp b/lib/creaDevManagerLib/modelCDMApplication.cpp index 56c9e08..40fb810 100644 --- a/lib/creaDevManagerLib/modelCDMApplication.cpp +++ b/lib/creaDevManagerLib/modelCDMApplication.cpp @@ -82,7 +82,7 @@ modelCDMApplication::modelCDMApplication(modelCDMIProjectTreeNode* parent, const if(wordBits[0] == "EXE_NAME") { word = wordBits[1]; - for (int i = 2; i < wordBits.size(); i++) + for (int i = 2; i < (int)(wordBits.size()); i++) { word += " " + wordBits[i]; } @@ -176,7 +176,7 @@ bool modelCDMApplication::SetExecutableName(const std::string& fileName, std::st 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]; } @@ -262,7 +262,7 @@ const bool modelCDMApplication::Refresh(std::string*& result) if(wordBits[0] == "EXE_NAME") { word = wordBits[1]; - for (int i = 2; i < wordBits.size(); i++) + for (int i = 2; i < (int)(wordBits.size()); i++) { word += " " + wordBits[i]; } @@ -290,7 +290,7 @@ const bool modelCDMApplication::Refresh(std::string*& result) std::string applicationName = stdfileName; //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() == applicationName) { @@ -336,7 +336,7 @@ const bool modelCDMApplication::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) { @@ -400,7 +400,7 @@ const bool modelCDMApplication::Refresh(std::string*& result) } } - for (int i = 0; i < checkedFolders.size(); i++) + for (int i = 0; i < (int)(checkedFolders.size()); i++) { if(!checkedFolders[i]) { @@ -409,7 +409,7 @@ const bool modelCDMApplication::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]) { @@ -456,7 +456,7 @@ void modelCDMApplication::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; @@ -485,7 +485,7 @@ void modelCDMApplication::CheckStructure(std::map& properties { if (words[0] == "${EXE_NAME}_LINK_LIBRARIES") { - for (int i = 1; i < words.size(); i++) + for (int i = 1; i < (int)(words.size()); i++) { properties["application " + this->name + " lib " + words[i]] = true; } @@ -498,7 +498,7 @@ void modelCDMApplication::CheckStructure(std::map& properties CDMUtilities::splitter::split(words, word, " \t", CDMUtilities::splitter::no_empties); - for (int i = 0; i < words.size(); i++) + for (int i = 0; i < (int)(words.size()); i++) { properties["application " + this->name + " dir " + words[i]] = true; }