aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/diffeditor/diffeditorfactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/diffeditor/diffeditorfactory.cpp')
-rw-r--r--src/plugins/diffeditor/diffeditorfactory.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/diffeditor/diffeditorfactory.cpp b/src/plugins/diffeditor/diffeditorfactory.cpp
index 46c79df29d..c88ff3b576 100644
--- a/src/plugins/diffeditor/diffeditorfactory.cpp
+++ b/src/plugins/diffeditor/diffeditorfactory.cpp
@@ -35,6 +35,7 @@
using namespace Core;
using namespace TextEditor;
+using namespace Utils;
namespace DiffEditor {
namespace Internal {
@@ -60,7 +61,7 @@ DiffEditorFactory::DiffEditorFactory() :
},
rightHandler {
Constants::DIFF_EDITOR_ID,
- Core::Id(Constants::SIDE_BY_SIDE_VIEW_ID).withSuffix(2),
+ Utils::Id(Constants::SIDE_BY_SIDE_VIEW_ID).withSuffix(2),
TextEditorActionHandler::None,
[](Core::IEditor *e) { return static_cast<DiffEditor *>(e)->rightEditorWidget(); }
}