diff options
author | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-06-03 15:19:02 +0200 |
---|---|---|
committer | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-06-08 09:16:42 +0000 |
commit | 457fe4eb8704aa1f5c93a42144ffde5a201134fe (patch) | |
tree | d18ce5e763f93612cd8ae1b8bd528c3bacc6e32c /src/plugins/diffeditor/diffeditorfactory.cpp | |
parent | 9ab0510eaf020d43b9021ef17882884b61ad4282 (diff) | |
download | qt-creator-457fe4eb8704aa1f5c93a42144ffde5a201134fe.tar.gz |
DiffEditor: Drop Utils:: prefix when using namespace Utils
Change-Id: I640447bcd90bba4281b2b945f53c54040060d3bc
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'src/plugins/diffeditor/diffeditorfactory.cpp')
-rw-r--r-- | src/plugins/diffeditor/diffeditorfactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/diffeditor/diffeditorfactory.cpp b/src/plugins/diffeditor/diffeditorfactory.cpp index c88ff3b576..d2a9b5513f 100644 --- a/src/plugins/diffeditor/diffeditorfactory.cpp +++ b/src/plugins/diffeditor/diffeditorfactory.cpp @@ -61,7 +61,7 @@ DiffEditorFactory::DiffEditorFactory() : }, rightHandler { Constants::DIFF_EDITOR_ID, - Utils::Id(Constants::SIDE_BY_SIDE_VIEW_ID).withSuffix(2), + Id(Constants::SIDE_BY_SIDE_VIEW_ID).withSuffix(2), TextEditorActionHandler::None, [](Core::IEditor *e) { return static_cast<DiffEditor *>(e)->rightEditorWidget(); } } |