- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/TextUI/TextDialog.cpp
r163110 r33e801 134 134 } 135 135 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)); 136 void TextDialog::queryKeyValuePair(Parameter<KeyValuePair> ¶m, const std::string title, const std::string description) 137 { 138 registerQuery(new KeyValuePairTextQuery(param, title,description)); 138 139 } 139 140 141 void TextDialog::queryKeyValuePairs(Parameter< std::vector<KeyValuePair> > ¶m, const std::string title, const std::string description) 142 { 143 registerQuery(new KeyValuePairsTextQuery(param, title,description)); 144 } 140 145 141 146 /************************** Query Infrastructure ************************/
Note:
See TracChangeset
for help on using the changeset viewer.