| 135 | } |
| 136 | |
| 137 | void AsyncDialogs::getInt( |
| 138 | QWidget* parent, |
| 139 | const QString& title, |
| 140 | const QString& label, |
| 141 | int value, |
| 142 | std::function<void(int)> value_callback) |
| 143 | { |
| 144 | getInt(parent, title, label, value, -2147483647, 2147483647, 1, {}, wrapValueCallback(std::move(value_callback))); |
| 145 | } |
| 146 | |
| 147 | void AsyncDialogs::getInt( |
| 148 | QWidget* parent, |
nothing calls this directly
no test coverage detected