- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/Pipe/DoubleQtQueryPipe.cpp
r0aa122 rf10b0c 23 23 #include "CodePatterns/MemDebug.hpp" 24 24 25 DoubleQtQueryPipe::DoubleQtQueryPipe( double *_content, QtDialog *_dialog) :25 DoubleQtQueryPipe::DoubleQtQueryPipe(Parameter<double> &_content, QtDialog *_dialog) : 26 26 content(_content), 27 27 dialog(_dialog) … … 32 32 33 33 void DoubleQtQueryPipe::update(double newDbl) { 34 (*content) = newDbl;34 content.set(newDbl); 35 35 dialog->update(); 36 36 }
Note:
See TracChangeset
for help on using the changeset viewer.