Changeset 98a2987 for molecuilder/src/UIElements
- Timestamp:
- Feb 26, 2010, 12:40:52 PM (16 years ago)
- Children:
- e65cc0
- Parents:
- 33bc66
- Location:
- molecuilder/src/UIElements
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/UIElements/Dialog.cpp
r33bc66 r98a2987 102 102 Dialog::MoleculeQuery::MoleculeQuery(string title, molecule **_target, MoleculeListClass *_molecules) : 103 103 Query(title), 104 t arget(_target),104 tmp(0), 105 105 molecules(_molecules), 106 tmp(0) 106 target(_target) 107 107 108 {} 108 109 … … 116 117 117 118 Dialog::VectorQuery::VectorQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check) : 118 Query(title), target(_target), cellSize(_cellSize), check(_check) 119 Query(title), 120 cellSize(_cellSize), 121 check(_check), 122 target(_target) 119 123 { 120 124 tmp = new Vector(); -
molecuilder/src/UIElements/TextDialog.cpp
r33bc66 r98a2987 114 114 bool TextDialog::VectorTextQuery::handle() { 115 115 tmp->AskPosition(cellSize,check); 116 return true; 116 117 }
Note:
See TracChangeset
for help on using the changeset viewer.