- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MakroAction_impl_pre.hpp
r329cf3 r975b83 263 263 // =========== constructor =========== 264 264 ACTION::ACTION () : 265 MakroAction(ActionTraits< ACTION >(), actions), 266 actions(prototype_actions) 265 MakroAction(ActionTraits< ACTION >(), actions) 267 266 {} 268 267 … … 295 294 Action* ACTION::clone(enum QueryOptions flag) const 296 295 { 297 return new ACTION(); 296 if (flag == Interactive) 297 return new ACTION(); 298 else 299 return new ACTION(*this); 298 300 } 299 301
Note:
See TracChangeset
for help on using the changeset viewer.