- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/Query/DoublesQtQuery.cpp
r955b91 rf10b0c 30 30 31 31 32 QtDialog::DoublesQtQuery::DoublesQtQuery( std::string title,QBoxLayout *_parent,QtDialog *_dialog) :33 Dialog::DoublesQuery( title),32 QtDialog::DoublesQtQuery::DoublesQtQuery(Parameter<std::vector<double> > ¶m, std::string title,QBoxLayout *_parent,QtDialog *_dialog) : 33 Dialog::DoublesQuery(param, title), 34 34 parent(_parent) 35 35 { … … 60 60 thisHLayout->addLayout(thisV2Layout); 61 61 62 pipe = new QtQueryListPipe<double>( &tmp,_dialog,inputBox,inputList,AddButton,RemoveButton);62 pipe = new QtQueryListPipe<double>(tmp,_dialog,inputBox,inputList,AddButton,RemoveButton); 63 63 connect(inputBox,SIGNAL(textChanged(const QString&)),pipe,SLOT(IntegerEntered(const QString&))); 64 64 connect(inputList,SIGNAL(itemSelectionChanged()),pipe,SLOT(IntegerSelected()));
Note:
See TracChangeset
for help on using the changeset viewer.