- Timestamp:
- Jul 17, 2017, 12:28:51 PM (8 years ago)
- Branches:
- Action_Thermostats, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults
- Children:
- 3bd4a66
- Parents:
- 9346af
- git-author:
- Frederik Heber <frederik.heber@…> (07/06/17 22:18:13)
- git-committer:
- Frederik Heber <frederik.heber@…> (07/17/17 12:28:51)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/CommandLineUI/Query/AtomsCommandLineQuery.cpp
r9346af rbf87c2 50 50 CommandLineDialog::AtomsCommandLineQuery::~AtomsCommandLineQuery() {} 51 51 52 boolCommandLineDialog::AtomsCommandLineQuery::handle() {52 void CommandLineDialog::AtomsCommandLineQuery::handle() { 53 53 std::vector<int> IdxOfAtom; 54 54 if (CommandLineParser::getInstance().vm.count(getTitle())) { … … 57 57 } catch(boost::bad_any_cast &e) { 58 58 IdxOfAtom.clear(); 59 return false;59 return; 60 60 } 61 61 const atom *temp_element; … … 65 65 temp.push_back(temp_element); 66 66 } 67 return true;67 handleSuccess = true; return; 68 68 } 69 return false;70 69 } 71 70
Note:
See TracChangeset
for help on using the changeset viewer.