- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/Pipe/UnsignedIntQtQueryPipe.cpp
r0aa122 rf10b0c 24 24 25 25 26 UnsignedIntQtQueryPipe::UnsignedIntQtQueryPipe( unsigned int *_content, QtDialog *_dialog) :26 UnsignedIntQtQueryPipe::UnsignedIntQtQueryPipe(Parameter<unsigned int> &_content, QtDialog *_dialog) : 27 27 content(_content), 28 28 dialog(_dialog) … … 33 33 34 34 void UnsignedIntQtQueryPipe::update(unsigned int newUnsignedInt) { 35 (*content) = newUnsignedInt;35 content.set(newUnsignedInt); 36 36 dialog->update(); 37 37 }
Note:
See TracChangeset
for help on using the changeset viewer.