From d549751bb612b19d64a357ea6025960cfc9f9b9d Mon Sep 17 00:00:00 2001 From: Jiyun Yang Date: Wed, 27 Jan 2021 20:43:46 +0900 Subject: [PATCH] [NUI] Update WebView constructor with program arguments (#2573) Signed-off-by: Jiyun Yang --- src/Tizen.NUI/src/internal/WebView.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Tizen.NUI/src/internal/WebView.cs b/src/Tizen.NUI/src/internal/WebView.cs index 2220cdb..36a6c8d 100755 --- a/src/Tizen.NUI/src/internal/WebView.cs +++ b/src/Tizen.NUI/src/internal/WebView.cs @@ -264,11 +264,10 @@ namespace Tizen.NUI /// /// Creates an uninitialized WebView. - /// count of args /// args array /// [EditorBrowsable(EditorBrowsableState.Never)] - public WebView(int argc, string[] args) : this(Interop.WebView.WebView_New_3(argc, args), true) + public WebView(string[] args) : this(Interop.WebView.WebView_New_3(args.Length, args), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } -- 2.7.4