Changes in src/UIElements/Dialog.cpp [6d574a:84c494]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Dialog.cpp
r6d574a r84c494 14 14 #include "molecule.hpp" 15 15 #include "vector.hpp" 16 #include "Matrix.hpp" 17 #include "Box.hpp" 16 18 17 19 using namespace std; … … 162 164 // Vector Queries 163 165 164 Dialog::VectorQuery::VectorQuery(std::string title,Vector *_target, const double *const _cellSize,bool _check, std::string _description) :166 Dialog::VectorQuery::VectorQuery(std::string title,Vector *_target,bool _check, std::string _description) : 165 167 Query(title, _description), 166 cellSize(_cellSize),167 168 check(_check), 168 169 target(_target) … … 182 183 // Box Queries 183 184 184 Dialog::BoxQuery::BoxQuery(std::string title, double ** const_cellSize, std::string _description) :185 Dialog::BoxQuery::BoxQuery(std::string title, Box* _cellSize, std::string _description) : 185 186 Query(title, _description), 186 187 target(_cellSize) … … 195 196 196 197 void Dialog::BoxQuery::setResult() { 197 for (int i=0;i<6;i++) { 198 (*target)[i] = tmp[i]; 199 } 198 (*target)= ReturnFullMatrixforSymmetric(tmp); 200 199 } 201 200
Note:
See TracChangeset
for help on using the changeset viewer.