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