- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Query/BooleanQuery.cpp
r51b5d1 rf10b0c 24 24 25 25 // Bool Queries 26 Dialog::BooleanQuery::BooleanQuery( std::string title,std::string description) :26 Dialog::BooleanQuery::BooleanQuery(Parameter<bool> ¶m, std::string title,std::string description) : 27 27 Query(title, description), 28 tmp( false)28 tmp(param) 29 29 {} 30 30 … … 32 32 33 33 void Dialog::BooleanQuery::setResult() { 34 ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);34 //ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp); 35 35 } 36 36
Note:
See TracChangeset
for help on using the changeset viewer.