Ignore:
File:
1 edited

Legend:

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

    r955b91 rf10b0c  
    2424
    2525// Doubles Queries
    26 Dialog::DoublesQuery::DoublesQuery(std::string title, std::string _description) :
    27     Query(title, _description)
     26Dialog::DoublesQuery::DoublesQuery(Parameter<std::vector<double> > &param, std::string title, std::string _description) :
     27    Query(title, _description),
     28    tmp(param)
    2829{}
    2930
     
    3132
    3233void Dialog::DoublesQuery::setResult() {
    33   ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
     34  //ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
    3435}
    3536
Note: See TracChangeset for help on using the changeset viewer.