Ignore:
File:
1 edited

Legend:

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

    r955b91 rf10b0c  
    2424
    2525// String Queries
    26 Dialog::StringQuery::StringQuery(std::string title,std::string _description) :
    27     Query(title, _description)
     26Dialog::StringQuery::StringQuery(Parameter<std::string> &param, std::string title,std::string _description) :
     27    Query(title, _description),
     28    tmp(param)
    2829{}
    2930
     
    3132
    3233void Dialog::StringQuery::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.