MCPcopy Create free account
hub / github.com/Palm1r/QodeAssist / onOpenInstructionsFolder

Method onOpenInstructionsFolder

widgets/QuickRefactorDialog.cpp:561–573  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

559}
560
561void 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
575void QuickRefactorDialog::onOpenSettings()
576{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected