From: Tasuku Suzuki Date: Wed, 13 Feb 2013 02:12:23 +0000 (+0900) Subject: Fixed a connection to a slot that doesn't exists X-Git-Tag: upstream/5.2.95+rc1~83^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9001f04038f1f58a1aa154ad60d978db964d5e8a;p=platform%2Fupstream%2Fqtmultimedia.git Fixed a connection to a slot that doesn't exists Change-Id: I7f94bab4e230996ace46d1c04d9d5a66ad9443d5 Reviewed-by: Yoann Lopes --- diff --git a/src/imports/multimedia/qdeclarativevideooutput.cpp b/src/imports/multimedia/qdeclarativevideooutput.cpp index 4f2d063..1b4b9cd 100644 --- a/src/imports/multimedia/qdeclarativevideooutput.cpp +++ b/src/imports/multimedia/qdeclarativevideooutput.cpp @@ -179,7 +179,7 @@ void QDeclarativeVideoOutput::setSource(QObject *source) if (mediaObjectProperty.hasNotifySignal()) { QMetaMethod method = mediaObjectProperty.notifySignal(); QMetaObject::connect(m_source.data(), method.methodIndex(), - this, this->metaObject()->indexOfSlot("updateMediaObject()"), + this, this->metaObject()->indexOfSlot("_q_updateMediaObject()"), Qt::DirectConnection, 0); }