- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/TextUI/Query/VectorsTextQuery.cpp
r955b91 rf10b0c 31 31 32 32 33 TextDialog::VectorsTextQuery::VectorsTextQuery( std::string title, bool _check, std::string _description) :34 Dialog::VectorsQuery( title,_check,_description)33 TextDialog::VectorsTextQuery::VectorsTextQuery(Parameter<std::vector<Vector> > ¶m, std::string title, bool _check, std::string _description) : 34 Dialog::VectorsQuery(param, title,_check,_description) 35 35 {} 36 36 … … 50 50 // dissect by "," 51 51 double coord = 0.; 52 std::vector<Vector> temp_vectors; 52 53 std::string::iterator olditerspace = line.begin(); 53 54 std::string::iterator olditercomma = line.begin(); … … 72 73 } 73 74 if (World::getInstance().getDomain().isValid(temp)) 74 t mp.push_back(temp);75 temp_vectors.push_back(temp); 75 76 olditerspace = vectoriter; 76 77 } 77 78 } 79 tmp.set(temp_vectors); 78 80 79 81 return true;
Note:
See TracChangeset
for help on using the changeset viewer.