From: moon87.park Date: Wed, 19 Jul 2017 07:42:21 +0000 (+0900) Subject: [Attach-panel] Release Version X-Git-Tag: submit/trunk/20170823.075128~120^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e867a311df96730d793700ed01b1f2911ad4890;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [Attach-panel] Release Version Change-Id: If1de99c9c22e7f62c74a0f0c426318835c0e5b83 --- diff --git a/packaging/csapi-attach-panel.spec b/packaging/csapi-attach-panel.spec index 73b128b..732980a 100755 --- a/packaging/csapi-attach-panel.spec +++ b/packaging/csapi-attach-panel.spec @@ -1,6 +1,6 @@ Name: csapi-attach-panel Summary: Tizen attach panel API for C# -Version: 1.0.1 +Version: 1.0.2 Release: 1 Group: Development/Libraries License: Apache-2.0 diff --git a/src/Tizen.Applications.AttachPanel/Tizen.Applications.AttachPanel/AttachPanel.cs b/src/Tizen.Applications.AttachPanel/Tizen.Applications.AttachPanel/AttachPanel.cs index df0415d..cb4a037 100755 --- a/src/Tizen.Applications.AttachPanel/Tizen.Applications.AttachPanel/AttachPanel.cs +++ b/src/Tizen.Applications.AttachPanel/Tizen.Applications.AttachPanel/AttachPanel.cs @@ -24,6 +24,7 @@ namespace Tizen.Applications.AttachPanel Interop.AttachPanel.ErrorCode err = Interop.AttachPanel.CreateAttachPanel(conformant, ref candidateAttachPanel); checkException(err); + Tizen.Log.Debug("AttachPanelSharp", "Success to create an AttachPanel Instance"); _attachPanel = candidateAttachPanel; if (_eventEventHandler == null) @@ -137,6 +138,11 @@ namespace Tizen.Applications.AttachPanel /// Thrown when an attempt to allocate memory fails. public void SetExtraData(ContentCategory category, Bundle extraData) { + if(extraData == null) + { + checkException(Interop.AttachPanel.ErrorCode.InvalidParameter); + } + IntPtr bundle = IntPtr.Zero; if (extraData != null) {