aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/diffeditor/diffeditorplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/diffeditor/diffeditorplugin.cpp')
-rw-r--r--src/plugins/diffeditor/diffeditorplugin.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/diffeditor/diffeditorplugin.cpp b/src/plugins/diffeditor/diffeditorplugin.cpp
index 867217d86d..3112170bc4 100644
--- a/src/plugins/diffeditor/diffeditorplugin.cpp
+++ b/src/plugins/diffeditor/diffeditorplugin.cpp
@@ -29,8 +29,7 @@ using namespace Core;
using namespace TextEditor;
using namespace Utils;
-namespace DiffEditor {
-namespace Internal {
+namespace DiffEditor::Internal {
class ReloadInput {
public:
@@ -133,7 +132,7 @@ DiffFilesController::DiffFilesController(IDocument *document)
tasks.append(AsyncTask<FileData>(std::bind(setupDiff, _1, inputList.at(i)),
std::bind(onDiffDone, _1, i)));
}
- taskTree.setupRoot(tasks);
+ taskTree.setRecipe(tasks);
};
const auto onTreeDone = [this, storage] {
const QList<std::optional<FileData>> &results = *storage;
@@ -535,8 +534,7 @@ void DiffEditorPlugin::initialize()
d = new DiffEditorPluginPrivate;
}
-} // namespace Internal
-} // namespace DiffEditor
+} // namespace DiffEditor::Internal
#ifdef WITH_TESTS