Removed the playbackStateChanged signal from Video element
authorDmytro Poplavskiy <dmytro.poplavskiy@nokia.com>
Thu, 19 Jul 2012 04:12:05 +0000 (14:12 +1000)
committerQt by Nokia <qt-info@nokia.com>
Thu, 19 Jul 2012 07:08:48 +0000 (09:08 +0200)
It conflicts with Video.playbackState property notifications

Change-Id: I47901547e9db6f2b71e25c05ca8ce24c402eb5a2
Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
src/imports/multimedia/Video.qml

index dc901e7..b0454d7 100644 (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()
     }
 
     /*!