From b98c5f0be0c3d3fe0f9a94f85e6979c3757a17ad Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Fri, 5 Oct 2018 12:29:47 +0100 Subject: [PATCH] Fixed SVACE error in WebView Change-Id: If63b7153b8827915b1f836c382ad1978402e4cd4 --- dali-toolkit/internal/controls/web-view/web-view-impl.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dali-toolkit/internal/controls/web-view/web-view-impl.cpp b/dali-toolkit/internal/controls/web-view/web-view-impl.cpp index 7da5f9d..9cc4454 100644 --- a/dali-toolkit/internal/controls/web-view/web-view-impl.cpp +++ b/dali-toolkit/internal/controls/web-view/web-view-impl.cpp @@ -61,7 +61,11 @@ DALI_TYPE_REGISTRATION_END() WebView::WebView( const std::string& locale, const std::string& timezoneId ) : Control( ControlBehaviour( ACTOR_BEHAVIOUR_DEFAULT | DISABLE_STYLE_CHANGE_SIGNALS ) ), mUrl(), - mWebViewSize( Stage::GetCurrent().GetSize() ) + mVisual(), + mWebViewSize( Stage::GetCurrent().GetSize() ), + mWebEngine(), + mPageLoadStartedSignal(), + mPageLoadFinishedSignal() { mWebEngine = Dali::WebEngine::New(); if ( mWebEngine ) -- 2.7.4