From: Dmitry Shusharin Date: Wed, 4 Aug 2021 05:33:06 +0000 (+0700) Subject: gstqmlgl: fix indent X-Git-Tag: 1.19.3~509^2~54 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a92c855dd520b0eff2da6b770ac62c3990306ea2;p=platform%2Fupstream%2Fgstreamer.git gstqmlgl: fix indent Part-of: --- diff --git a/ext/qt/qtitem.cc b/ext/qt/qtitem.cc index 48399a7..31deedb 100644 --- a/ext/qt/qtitem.cc +++ b/ext/qt/qtitem.cc @@ -603,18 +603,22 @@ QtGLVideoItemInterface::initWinSys () } void -QtGLVideoItem::handleWindowChanged(QQuickWindow *win) +QtGLVideoItem::handleWindowChanged (QQuickWindow * win) { if (win) { - if (win->isSceneGraphInitialized()) - win->scheduleRenderJob(new RenderJob(std::bind(&QtGLVideoItem::onSceneGraphInitialized, this)), QQuickWindow::BeforeSynchronizingStage); + if (win->isSceneGraphInitialized ()) + win->scheduleRenderJob (new RenderJob (std:: + bind (&QtGLVideoItem::onSceneGraphInitialized, this)), + QQuickWindow::BeforeSynchronizingStage); else - connect(win, SIGNAL(sceneGraphInitialized()), this, SLOT(onSceneGraphInitialized()), Qt::DirectConnection); + connect (win, SIGNAL (sceneGraphInitialized ()), this, + SLOT (onSceneGraphInitialized ()), Qt::DirectConnection); - connect(win, SIGNAL(sceneGraphInvalidated()), this, SLOT(onSceneGraphInvalidated()), Qt::DirectConnection); + connect (win, SIGNAL (sceneGraphInvalidated ()), this, + SLOT (onSceneGraphInvalidated ()), Qt::DirectConnection); } else { this->priv->qt_context = NULL; - this->priv->initted = FALSE; + this->priv->initted = FALSE; } }