Ignore:
File:
1 edited

Legend:

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

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