Re: [Interest] QML Signal to C++ Slot with QVariant is not working with Qt5.3

2014-06-30 Thread Railway Coder
Hi, I've created a bugreport for this: https://bugreports.qt-project.org/browse/QTBUG-39971 I have found out that QVariant Signal is working in Qt5.3 if I change the QML Signal from: signal qmlSignal2(var anObject) to: signal qmlSignal4(variant anObject) Best Regards, railwaycoder 2014-0

Re: [Interest] QML Signal to C++ Slot with QVariant is not working with Qt5.3

2014-06-28 Thread Alan Ezust
I can confirm that your code works with 5.2.1 but does not work with 5.3.0. And I don't know why it doesn't work with 5.3.0. Looks like a bug to me. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QML Signal to C++ Slot with QVariant is not working with Qt5.3

2014-06-26 Thread Railway Coder
Hi, since there was no reply yet, I've uploaded the example to bitbucket. A simple git import from qtcreator with following URL should make it very simple to test it: Clone URL: https://railwayco...@bitbucket.org/railwaycoder/qml_cpp_signal_slots.git Please try with Qt5.2 and Qt5.3. If you get t

[Interest] QML Signal to C++ Slot with QVariant is not working with Qt5.3

2014-06-24 Thread Railway Coder
Hello together, are there some changes between Qt5.2 and Qt5.3 regarding to signal and slots behaviour? I've tried to switch to Qt5.3 but my Signals and Slots with QVariant are not working between QML and C++. I've written a small example that is working fine with Qt5.2 but not with Qt5.3. I get