| 92 | } |
| 93 | |
| 94 | void AsyncDialogs::getItem( |
| 95 | QWidget* parent, |
| 96 | const QString& title, |
| 97 | const QString& label, |
| 98 | const QStringList& items, |
| 99 | int current, |
| 100 | std::function<void(QString)> value_callback) |
| 101 | { |
| 102 | getItem(parent, title, label, items, current, true, {}, Qt::ImhNone, wrapValueCallback(std::move(value_callback))); |
| 103 | } |
| 104 | |
| 105 | void AsyncDialogs::getItem( |
| 106 | QWidget* parent, |
nothing calls this directly
no test coverage detected