Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Query/VectorsQuery.cpp

    r0aa122 rf10b0c  
    2424
    2525// Vectors Queries
    26 Dialog::VectorsQuery::VectorsQuery(std::string title,bool _check, std::string _description) :
     26Dialog::VectorsQuery::VectorsQuery(Parameter<std::vector<Vector> > &param, std::string title,bool _check, std::string _description) :
    2727  Query(title, _description),
     28  tmp(param),
    2829  check(_check)
    2930{}
     
    3334
    3435void Dialog::VectorsQuery::setResult() {
    35   ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
     36  //ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
    3637}
    3738
Note: See TracChangeset for help on using the changeset viewer.