| 25 | namespace QodeAssist { |
| 26 | |
| 27 | QuickRefactorHandler::QuickRefactorHandler(QObject *parent) |
| 28 | : QObject(parent) |
| 29 | , m_currentEditor(nullptr) |
| 30 | , m_isRefactoringInProgress(false) |
| 31 | , m_contextManager(this) |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | QuickRefactorHandler::~QuickRefactorHandler() {} |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected