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:
Dmytro Poplavskiy
2012-07-19 14:12:05 +10:00
committed by Qt by Nokia
parent b915c5e0e7
commit 6854f07257

View File

@@ -337,13 +337,6 @@ Item {
*/
signal playing
/*!
\qmlsignal Video::playbackStateChanged()
This signal is emitted whenever the state of playback changes.
*/
signal playbackStateChanged
VideoOutput {
id: videoOut
anchors.fill: video
@@ -355,8 +348,6 @@ Item {
onPaused: video.paused()
onStopped: video.stopped()
onPlaying: video.playing()
onPlaybackStateChanged: video.playbackStateChanged()
}
/*!