Ignore:
File:
1 edited

Legend:

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

    r0aa122 rf10b0c  
    2424
    2525// Vector Queries
    26 Dialog::VectorQuery::VectorQuery(std::string title,bool _check, std::string _description) :
     26Dialog::VectorQuery::VectorQuery(Parameter<Vector> &param, std::string title,bool _check, std::string _description) :
    2727  Query(title, _description),
     28  tmp(param),
    2829  check(_check)
    2930{}
     
    3334
    3435void Dialog::VectorQuery::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.