- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/Pipe/BooleanQtQueryPipe.hpp
r85b112 r56f73b 18 18 19 19 class QtDialog; 20 class QC heckBox;20 class QComboBox; 21 21 22 22 class BooleanQtQueryPipe : public QWidget { 23 23 Q_OBJECT 24 24 public: 25 BooleanQtQueryPipe( bool *_content, QtDialog *_dialog, QCheckBox *_booleanCheckBox);25 BooleanQtQueryPipe(const bool *_content, QtDialog *_dialog, QComboBox *_booleanComboBox); 26 26 virtual ~BooleanQtQueryPipe(); 27 27 28 28 public slots: 29 void update( int state);29 void update(); 30 30 31 31 private: 32 bool *content;32 const bool *content; 33 33 QtDialog *dialog; 34 QC heckBox *booleanCheckBox;34 QComboBox *booleanComboBox; 35 35 }; 36 36
Note:
See TracChangeset
for help on using the changeset viewer.