Removed the playbackStateChanged signal from Video element
It conflicts with Video.playbackState property notifications Change-Id: I47901547e9db6f2b71e25c05ca8ce24c402eb5a2 Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
This commit is contained in:
committed by
Qt by Nokia
parent
b915c5e0e7
commit
6854f07257
@@ -337,13 +337,6 @@ Item {
|
|||||||
*/
|
*/
|
||||||
signal playing
|
signal playing
|
||||||
|
|
||||||
/*!
|
|
||||||
\qmlsignal Video::playbackStateChanged()
|
|
||||||
|
|
||||||
This signal is emitted whenever the state of playback changes.
|
|
||||||
*/
|
|
||||||
signal playbackStateChanged
|
|
||||||
|
|
||||||
VideoOutput {
|
VideoOutput {
|
||||||
id: videoOut
|
id: videoOut
|
||||||
anchors.fill: video
|
anchors.fill: video
|
||||||
@@ -355,8 +348,6 @@ Item {
|
|||||||
onPaused: video.paused()
|
onPaused: video.paused()
|
||||||
onStopped: video.stopped()
|
onStopped: video.stopped()
|
||||||
onPlaying: video.playing()
|
onPlaying: video.playing()
|
||||||
|
|
||||||
onPlaybackStateChanged: video.playbackStateChanged()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
|||||||
Reference in New Issue
Block a user