Ignore:
File:
1 edited

Legend:

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

    r51b5d1 rf10b0c  
    2424
    2525// Bool Queries
    26 Dialog::BooleanQuery::BooleanQuery(std::string title,std::string description) :
     26Dialog::BooleanQuery::BooleanQuery(Parameter<bool> &param, std::string title,std::string description) :
    2727    Query(title, description),
    28     tmp(false)
     28    tmp(param)
    2929{}
    3030
     
    3232
    3333void Dialog::BooleanQuery::setResult() {
    34   ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
     34  //ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
    3535}
    3636
Note: See TracChangeset for help on using the changeset viewer.