- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/Pipe/StringQtQueryPipe.cpp
r955b91 rf10b0c 26 26 27 27 28 StringQtQueryPipe::StringQtQueryPipe( std::string *_content, QtDialog *_dialog) :28 StringQtQueryPipe::StringQtQueryPipe(Parameter<std::string> &_content, QtDialog *_dialog) : 29 29 content(_content), 30 30 dialog(_dialog) … … 35 35 36 36 void StringQtQueryPipe::update(const QString& newText) { 37 content ->assign(newText.toStdString());37 content.set(newText.toStdString()); 38 38 dialog->update(); 39 39 }
Note:
See TracChangeset
for help on using the changeset viewer.