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

Method handleRequestFailed

QuickRefactorHandler.cpp:438–449  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

436}
437
438void QuickRefactorHandler::handleRequestFailed(const QString &requestId, const QString &error)
439{
440 if (requestId == m_lastRequestId) {
441 m_activeRequests.remove(requestId);
442 m_isRefactoringInProgress = false;
443 RefactorResult result;
444 result.success = false;
445 result.errorMessage = error;
446 result.editor = m_currentEditor;
447 emit refactoringCompleted(result);
448 }
449}
450
451} // namespace QodeAssist

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected