diff options
author | jan Iversen <jani@apache.org> | 2018-09-04 11:18:43 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-09-11 17:22:58 -0700 |
commit | d0edc296360e7653a4c8b672cfb136581c4a10f0 (patch) | |
tree | 6d42fcee2174770cd1e0c8edd892540553ee40b6 /tests | |
parent | a71afd31ee66edf45c8970dcbd6514d7c4b5e9f0 (diff) | |
download | subsurface-d0edc296360e7653a4c8b672cfb136581c4a10f0.tar.gz |
core,tests: change qml register function
In order to address the C++ object directy in qml, a different
registration is needed.
qmlRegisterType, registers the C++ class, allowing qml code to inherit
from it and make qml objects. This is needed for graphical elemnets
like profile and map
setContentProperty, registers the C++ object, thus allowing signals to be
catched.
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testqml.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testqml.cpp b/tests/testqml.cpp index 9f66d216f..14aa0bf5c 100644 --- a/tests/testqml.cpp +++ b/tests/testqml.cpp @@ -37,7 +37,7 @@ int main(int argc, char **argv) argc--; // Register types - qPref::instance()->registerQML(); + qPref::instance()->registerQML(NULL); // Run all tst_*.qml files return quick_test_main(argc, argv, "TestQML", tst_dir); |