Changes in src/UIElements/QT4/QTDialog.hpp [7cd6e7:e5c0a1]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/QT4/QTDialog.hpp
r7cd6e7 re5c0a1 451 451 Q_OBJECT 452 452 public: 453 ElementQTQueryPipe( element **_content, QTDialog *_dialog, QComboBox *_theBox);453 ElementQTQueryPipe(const element **_content, QTDialog *_dialog, QComboBox *_theBox); 454 454 virtual ~ElementQTQueryPipe(); 455 455 … … 458 458 459 459 private: 460 element **content;460 const element **content; 461 461 QTDialog *dialog; 462 462 QComboBox *theBox; … … 466 466 Q_OBJECT 467 467 public: 468 ElementsQTQueryPipe(std::vector< element *>*_content, QTDialog *_dialog, QComboBox *_theBox);468 ElementsQTQueryPipe(std::vector<const element *>*_content, QTDialog *_dialog, QComboBox *_theBox); 469 469 virtual ~ElementsQTQueryPipe(); 470 470 … … 473 473 474 474 private: 475 std::vector< element *>*content;475 std::vector<const element *>*content; 476 476 QTDialog *dialog; 477 477 QComboBox *theBox;
Note:
See TracChangeset
for help on using the changeset viewer.