From b2bc725eff3c3fc849d96f5d1c63950651593be7 Mon Sep 17 00:00:00 2001 From: Bent Witthold Date: Thu, 1 Jan 2026 10:33:41 +0100 Subject: [PATCH] Refactoring: Gathered model meta data (role name, data types) in a central location. Closes #16. --- UIs/GenericWidgets | 2 +- libs/GenericCore | 2 +- tests/GenericCoreTests/core_test.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/UIs/GenericWidgets b/UIs/GenericWidgets index 12e5596..683f5d2 160000 --- a/UIs/GenericWidgets +++ b/UIs/GenericWidgets @@ -1 +1 @@ -Subproject commit 12e5596b34fb45eb6eb2489557ab585b348b7ca7 +Subproject commit 683f5d224c97700cc7c078de8acd876254646898 diff --git a/libs/GenericCore b/libs/GenericCore index b2f01a7..2ccbe38 160000 --- a/libs/GenericCore +++ b/libs/GenericCore @@ -1 +1 @@ -Subproject commit b2f01a79900a8c8f49e4787c0ee6ee15494c38cf +Subproject commit 2ccbe3839abe3c4e40b297ed4c4b1aecc6862fa1 diff --git a/tests/GenericCoreTests/core_test.cpp b/tests/GenericCoreTests/core_test.cpp index b378fe2..8d54953 100644 --- a/tests/GenericCoreTests/core_test.cpp +++ b/tests/GenericCoreTests/core_test.cpp @@ -10,7 +10,7 @@ QT_END_NAMESPACE TEST(CoreTests, TestEqualString) { const QString coreName("GenericCore"); - const QString coreVersion("0.0.1"); + const QString coreVersion("0.1.0"); const auto expected = QString("%1 (Version %2)").arg(coreName).arg(coreVersion); auto core = std::make_unique(); const auto actual = core->toString();