| 246 | } |
| 247 | |
| 248 | static bool promptTargetLayerCombo(Document_Interface* doc, |
| 249 | QWidget* parent, |
| 250 | const QString& title, |
| 251 | QString& outLayer) { |
| 252 | return promptLayerNameCombo( |
| 253 | doc, |
| 254 | parent, |
| 255 | title, |
| 256 | QStringLiteral("Target layer (choose existing or type a new one):"), |
| 257 | outLayer, |
| 258 | true // editable |
| 259 | ); |
| 260 | } |
| 261 | |
| 262 | namespace { |
| 263 |
no test coverage detected