| 17 | } |
| 18 | |
| 19 | void AsyncDialogs::getText( |
| 20 | QWidget* parent, |
| 21 | const QString& title, |
| 22 | const QString& label, |
| 23 | const QString& text, |
| 24 | std::function<void(QString)> value_callback) |
| 25 | { |
| 26 | getText(parent, title, label, QLineEdit::Normal, text, {}, Qt::ImhNone, wrapValueCallback(std::move(value_callback))); |
| 27 | } |
| 28 | |
| 29 | void AsyncDialogs::getText( |
| 30 | QWidget* parent, |
nothing calls this directly
no test coverage detected