aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/refactoroverlay.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/texteditor/refactoroverlay.h')
-rw-r--r--src/plugins/texteditor/refactoroverlay.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/texteditor/refactoroverlay.h b/src/plugins/texteditor/refactoroverlay.h
index e6ed0655b6..ec3d342f0c 100644
--- a/src/plugins/texteditor/refactoroverlay.h
+++ b/src/plugins/texteditor/refactoroverlay.h
@@ -27,7 +27,7 @@
#include "texteditor_global.h"
-#include <coreplugin/id.h>
+#include <utils/id.h>
#include <QTextCursor>
#include <QIcon>
@@ -45,10 +45,10 @@ struct TEXTEDITOR_EXPORT RefactorMarker {
QIcon icon;
mutable QRect rect; // used to cache last drawing positin in document coordinates
std::function<void(TextEditor::TextEditorWidget *)> callback;
- Core::Id type;
+ Utils::Id type;
QVariant data;
- static RefactorMarkers filterOutType(const RefactorMarkers &markers, const Core::Id &type);
+ static RefactorMarkers filterOutType(const RefactorMarkers &markers, const Utils::Id &type);
};