From 07e2cc57a619cc487b46101d085313ae32ee1fc0 Mon Sep 17 00:00:00 2001 From: Yangang Han Date: Mon, 9 Dec 2013 16:14:20 +0800 Subject: [PATCH] Zone related constant correction according to the original definition. Change-Id: Iabca09f4bbf34128aa0b78cfc9134d153c139ac7 Signed-off-by: Yangang Han --- src/Vehicle/Vehicle.idl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Vehicle/Vehicle.idl b/src/Vehicle/Vehicle.idl index ba4a229..767e049 100644 --- a/src/Vehicle/Vehicle.idl +++ b/src/Vehicle/Vehicle.idl @@ -58,12 +58,12 @@ callback SupportedPropertiesCallback = void (sequence properties); interface Vehicle { const unsigned short ZONE_None = 0; - const unsigned short ZONE_Front = 1; - const unsigned short ZONE_Middle = 0x10; - const unsigned short ZONE_Right = 0x100; - const unsigned short ZONE_Left = 0x1000; - const unsigned short ZONE_Rear = 0x10000; - const unsigned short ZONE_Center = 0x10000; + const unsigned short ZONE_Front = 0x01; + const unsigned short ZONE_Middle = 0x02; + const unsigned short ZONE_Right = 0x04; + const unsigned short ZONE_Left = 0x08; + const unsigned short ZONE_Rear = 0x10; + const unsigned short ZONE_Center = 0x20; /** * \brief returns supported object types -- 2.7.4