Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Qt4/Pipe/BooleanQtQueryPipe.hpp

    r85b112 r56f73b  
    1818
    1919class QtDialog;
    20 class QCheckBox;
     20class QComboBox;
    2121
    2222class BooleanQtQueryPipe : public QWidget {
    2323  Q_OBJECT
    2424public:
    25   BooleanQtQueryPipe(bool *_content, QtDialog *_dialog, QCheckBox *_booleanCheckBox);
     25  BooleanQtQueryPipe(const bool *_content, QtDialog *_dialog, QComboBox *_booleanComboBox);
    2626  virtual ~BooleanQtQueryPipe();
    2727
    2828public slots:
    29   void update(int state);
     29  void update();
    3030
    3131private:
    32   bool *content;
     32  const bool *content;
    3333  QtDialog *dialog;
    34   QCheckBox *booleanCheckBox;
     34  QComboBox *booleanComboBox;
    3535};
    3636
Note: See TracChangeset for help on using the changeset viewer.