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