From: Jiyun Yang Date: Mon, 18 Mar 2019 08:23:46 +0000 (+0900) Subject: Fix wrong method declaration X-Git-Tag: dali_1.4.12~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F45%2F201645%2F1;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git Fix wrong method declaration Declaration of CreateNativeSurface() was not match to its implementation Change-Id: I7241db3eebf45934dadca0f18140452804882251 Signed-off-by: Jiyun Yang --- diff --git a/dali/integration-api/native-render-surface-factory.h b/dali/integration-api/native-render-surface-factory.h index 582e08f..18768c5 100755 --- a/dali/integration-api/native-render-surface-factory.h +++ b/dali/integration-api/native-render-surface-factory.h @@ -34,11 +34,9 @@ class NativeRenderSurface; * A native surface is created. * * @param [in] positionSize the position and size of the surface to create - * @param [in] name Name of surface passed in * @param [in] isTransparent Whether the surface has an alpha channel */ NativeRenderSurface* CreateNativeSurface( PositionSize positionSize, - const std::string& name, bool isTransparent ); } // namespace Dali