Bug 387386 - SpinBox onValueModified is not available due to component versioning
Summary: SpinBox onValueModified is not available due to component versioning
Status: RESOLVED FIXED
Alias: None
Product: frameworks-qqc2-desktop-style
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: unspecified
Platform: Arch Linux Linux
: NOR crash
Target Milestone: ---
Assignee: Marco Martin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-11-28 08:32 UTC by SeeLook
Modified: 2017-11-29 22:37 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description SeeLook 2017-11-28 08:32:47 UTC
Using this QQC2 this example fails to start:
``````````
import QtQuick 2.9
import QtQuick.Controls 2.2

SpinBox {
  from: 1; to: 50
  value: 5
  onValueModified: console.log(value)
}
`````````````````
it returns:
"SpinBox.onValueModified" is not available due to component versioning.

First I called this issue on: [1]
but only frameworks-qqc2-desktop-style causes this issue.
In [1] may be a clue of possible reason of that wrong behavior.


[1] https://bugreports.qt.io/browse/QTBUG-64762
Comment 1 SeeLook 2017-11-29 21:56:54 UTC
Thank You for fixing this :-)