Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Qt4/Pipe/UnsignedIntQtQueryPipe.cpp

    r0aa122 rf10b0c  
    2424
    2525
    26 UnsignedIntQtQueryPipe::UnsignedIntQtQueryPipe(unsigned int *_content, QtDialog *_dialog) :
     26UnsignedIntQtQueryPipe::UnsignedIntQtQueryPipe(Parameter<unsigned int> &_content, QtDialog *_dialog) :
    2727  content(_content),
    2828  dialog(_dialog)
     
    3333
    3434void UnsignedIntQtQueryPipe::update(unsigned int newUnsignedInt) {
    35   (*content) = newUnsignedInt;
     35  content.set(newUnsignedInt);
    3636  dialog->update();
    3737}
Note: See TracChangeset for help on using the changeset viewer.