diff options
author | Christian Kandeler <christian.kandeler@qt.io> | 2021-09-01 18:08:54 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@qt.io> | 2021-09-07 11:16:47 +0000 |
commit | 1b723f6fd95dee16c8c42c7e450f20668c12b837 (patch) | |
tree | 05b4c9d38621af3e073e65dda1a622bf25f1ee26 /src/plugins/cppeditor/cppquickfixassistant.h | |
parent | 0d410ef34292320397115489e595ee67bf23f6d4 (diff) | |
download | qt-creator-1b723f6fd95dee16c8c42c7e450f20668c12b837.tar.gz |
CppEditor: Remove unneeded CppEditorWidgetInterface
Removes a pseudo-abstraction and simplifies ClangdClient.
Change-Id: I5161d069371ff92a517866bb7500517cab6781b7
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/cppeditor/cppquickfixassistant.h')
-rw-r--r-- | src/plugins/cppeditor/cppquickfixassistant.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/cppeditor/cppquickfixassistant.h b/src/plugins/cppeditor/cppquickfixassistant.h index 14cca429e7..754e15f2f3 100644 --- a/src/plugins/cppeditor/cppquickfixassistant.h +++ b/src/plugins/cppeditor/cppquickfixassistant.h @@ -34,13 +34,12 @@ namespace CppEditor { +class CppEditorWidget; class CppRefactoringFile; using CppRefactoringFilePtr = QSharedPointer<CppRefactoringFile>; namespace Internal { -class CppEditorWidget; - class CppQuickFixInterface : public TextEditor::AssistInterface { public: |