Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/TextUI/TextDialog.cpp

    r163110 r33e801  
    134134}
    135135
    136 void TextDialog::queryRandomNumberDistribution_Parameters(Parameter<RandomNumberDistribution_Parameters> &_param, const std::string title, const std::string description){
    137   registerQuery(new RandomNumberDistribution_ParametersTextQuery(_param, title,description));
     136void TextDialog::queryKeyValuePair(Parameter<KeyValuePair> &param, const std::string title, const std::string description)
     137{
     138  registerQuery(new KeyValuePairTextQuery(param, title,description));
    138139}
    139140
     141void TextDialog::queryKeyValuePairs(Parameter< std::vector<KeyValuePair> > &param, const std::string title, const std::string description)
     142{
     143  registerQuery(new KeyValuePairsTextQuery(param, title,description));
     144}
    140145
    141146/************************** Query Infrastructure ************************/
Note: See TracChangeset for help on using the changeset viewer.