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