- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/Pipe/BooleanQtQueryPipe.cpp
r0aa122 r85b112 25 25 #include "CodePatterns/MemDebug.hpp" 26 26 27 BooleanQtQueryPipe::BooleanQtQueryPipe( const bool *_content, QtDialog *_dialog, QComboBox *_booleanComboBox) :27 BooleanQtQueryPipe::BooleanQtQueryPipe(bool *_content, QtDialog *_dialog, QCheckBox *_booleanCheckBox) : 28 28 content(_content), 29 29 dialog(_dialog), 30 booleanC omboBox(_booleanComboBox)30 booleanCheckBox(_booleanCheckBox) 31 31 {} 32 32 … … 34 34 {} 35 35 36 void BooleanQtQueryPipe::update() { 36 void BooleanQtQueryPipe::update(int state) { 37 (*content) = (state == Qt::Checked); 37 38 dialog->update(); 38 39 }
Note:
See TracChangeset
for help on using the changeset viewer.