From: pius.lee Date: Fri, 16 Jan 2015 09:42:41 +0000 (+0900) Subject: [Tool][Generator] fix removed method name in instance.cc X-Git-Tag: submit/tizen_mobile/20150603.064609~1^2~613^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c7a461bc7b367a24191a5744fdaddefb004d312;p=platform%2Fcore%2Fapi%2Fwebapi-plugins.git [Tool][Generator] fix removed method name in instance.cc Change-Id: I313760e185818eb2d9668211d01ca7f89a0d35bd Signed-off-by: pius.lee --- diff --git a/tools/skeleton_generator/WAPIOven.py b/tools/skeleton_generator/WAPIOven.py index ea00ee6..02bb4c8 100644 --- a/tools/skeleton_generator/WAPIOven.py +++ b/tools/skeleton_generator/WAPIOven.py @@ -129,8 +129,8 @@ class Compiler(IndentPrintable): for operation in iface.getTypes('Operation'): if hasattr(iface, 'exported') and iface.exported: - #operation.native_cmd = iface.name+'_'+operation.name - #operation.native_function = iface.name+(operation.name.title()) + operation.native_cmd = iface.name+'_'+operation.name + operation.native_function = iface.name+(operation.name.title()) #self.ctx['cmdtable'][operation.native_function] = operation.native_cmd native_cmd = iface.name+'_'+operation.name native_function = iface.name+(operation.name.title())