- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/Query/ElementQtQuery.cpp
r0aa122 rf10b0c 31 31 #include "World.hpp" 32 32 33 QtDialog::ElementQtQuery::ElementQtQuery( std::string _title, QBoxLayout *_parent, QtDialog *_dialog) :34 Dialog::ElementQuery( _title),33 QtDialog::ElementQtQuery::ElementQtQuery(Parameter<const element *> ¶m, std::string _title, QBoxLayout *_parent, QtDialog *_dialog) : 34 Dialog::ElementQuery(param, _title), 35 35 parent(_parent) 36 36 { … … 51 51 thisLayout->addWidget(inputBox); 52 52 53 pipe = new ElementQtQueryPipe( &tmp,_dialog,inputBox);53 pipe = new ElementQtQueryPipe(tmp,_dialog,inputBox); 54 54 pipe->update(inputBox->currentIndex()); 55 55 connect(inputBox,SIGNAL(currentIndexChanged(int)),pipe,SLOT(update(int)));
Note:
See TracChangeset
for help on using the changeset viewer.