diff --git a/src/gui/components/cc_frm.cpp b/src/gui/components/cc_frm.cpp index c160b1187..356ebc5aa 100644 --- a/src/gui/components/cc_frm.cpp +++ b/src/gui/components/cc_frm.cpp @@ -222,7 +222,7 @@ int CComponentsForm::addCCItem(CComponentsItem* cc_Item) int CComponentsForm::addCCItem(const std::vector &cc_Items) { for (size_t i= 0; i< cc_Items.size(); i++) - addCCItem(cc_Items[i]); + addCCItem(cc_Items.at(i)); return size(); }