| 559 | } |
| 560 | |
| 561 | void QuickRefactorDialog::onOpenInstructionsFolder() |
| 562 | { |
| 563 | QString path = QString("%1/qodeassist/quick_refactor/instructions") |
| 564 | .arg(Core::ICore::userResourcePath().toFSPathString()); |
| 565 | |
| 566 | QDir dir(path); |
| 567 | if (!dir.exists()) { |
| 568 | dir.mkpath("."); |
| 569 | } |
| 570 | |
| 571 | QUrl url = QUrl::fromLocalFile(dir.absolutePath()); |
| 572 | QDesktopServices::openUrl(url); |
| 573 | } |
| 574 | |
| 575 | void QuickRefactorDialog::onOpenSettings() |
| 576 | { |
nothing calls this directly
no outgoing calls
no test coverage detected