aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorDmitrii Akshintsev <dmitrii.akshintsev@qt.io>2024-01-24 14:39:30 +0100
committerDmitrii Akshintsev <dmitrii.akshintsev@qt.io>2024-01-30 17:14:09 +0100
commit37ef144704c09e23fd2edfd49daf86b368147d15 (patch)
tree30affc7039113df74006d84bc09d1be2ed260578 /tests/manual
parent71a7d98bd273c56e29eb355941ca4fa0b3243926 (diff)
DOM refactoring. Remove LoadOptions
Only defaultLoad is being used, hence it doesn't make sense to have them at all at the current stage Task-number: QTBUG-119550 Change-Id: I761e7c55d6aaafa29d234ace4b4b65bcc46a9855 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/qmldom/qmldomloadeditwrite.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/manual/qmldom/qmldomloadeditwrite.cpp b/tests/manual/qmldom/qmldomloadeditwrite.cpp
index fa04076f49..ff8ce42a63 100644
--- a/tests/manual/qmldom/qmldomloadeditwrite.cpp
+++ b/tests/manual/qmldom/qmldomloadeditwrite.cpp
@@ -50,8 +50,7 @@ int main()
[&tFile](Path, const DomItem &, const DomItem &newIt) {
tFile = newIt; // callback called when everything is loaded that receives the loaded
// external file pair (path, oldValue, newValue)
- },
- LoadOption::DefaultLoad);
+ });
// trigger the load
envPtr->loadPendingDependencies();