diff options
| author | Christian Kandeler <christian.kandeler@qt.io> | 2021-08-27 13:15:46 +0200 |
|---|---|---|
| committer | Christian Kandeler <christian.kandeler@qt.io> | 2021-08-30 08:21:57 +0000 |
| commit | 5fe3ead73ef730fa1659bd17af206ec94a428159 (patch) | |
| tree | 39be30dcb1b4509a6e6fa44ec3f4e935b73659dd /src/plugins/cppeditor/cppquickfix_test.cpp | |
| parent | 2d994620d1c6de5c2ba085ba50d28be27e27a1fb (diff) | |
| download | qt-creator-5fe3ead73ef730fa1659bd17af206ec94a428159.tar.gz | |
CppTools/CppEditor: Rename the TestDocument classes
It was not helpful that we had four different classes with the same name.
Note that they look suspiciously similar and could possibly be merged
into a single class at some point.
Change-Id: I7d4c10a09408226037bc0d276940bca39dc5f576
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/cppeditor/cppquickfix_test.cpp')
| -rw-r--r-- | src/plugins/cppeditor/cppquickfix_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppeditor/cppquickfix_test.cpp b/src/plugins/cppeditor/cppquickfix_test.cpp index bbb26a5ca6..53816d5412 100644 --- a/src/plugins/cppeditor/cppquickfix_test.cpp +++ b/src/plugins/cppeditor/cppquickfix_test.cpp @@ -86,7 +86,7 @@ QuickFixTestDocument::Ptr QuickFixTestDocument::create(const QByteArray &fileNam QuickFixTestDocument::QuickFixTestDocument(const QByteArray &fileName, const QByteArray &source, const QByteArray &expectedSource) - : TestDocument(fileName, source) + : GenericCppTestDocument(fileName, source) , m_expectedSource(QString::fromUtf8(expectedSource)) { removeMarkers(); |
