- 
    
Bug
 - 
    Resolution: Fixed
 - 
    
P2: Important
 - 
    Qt for MCUs 1.9
 - 
    None
 
- 
        QUL Sprint 1.2/2021, QUL Sprint 1.3/2022
 
here is the demo code:
there is a C++ compile error said that cannot find testProp property.
Rectangle {
    id: root
    color: "#000000"
    width: 800
    height: 480
    TestModel.onTestPropChanged: console.log("changed")
}
#include <qul/singleton.h> #include <qul/property.h> class TestModel : public Qul::Singleton<TestModel> { public: Qul::Property<int> testProp; };
temp solution: use Connections
- mentioned in
 - 
                    
Page Loading...