From: Jiyun Yang Date: Wed, 27 Jan 2021 11:43:46 +0000 (+0900) Subject: [NUI] Update WebView constructor with program arguments (#2573) X-Git-Tag: submit/tizen_6.0/20210128.005235~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d549751bb612b19d64a357ea6025960cfc9f9b9d;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Update WebView constructor with program arguments (#2573) Signed-off-by: Jiyun Yang --- 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(); }