Eo: Removed "type" property from event/op descriptions.
[profile/ivi/eobj.git] / examples / composite_objects / simple.c
index ee9e6e3..d7e5e25 100644 (file)
@@ -6,7 +6,7 @@
 EAPI Eo_Op SIMPLE_BASE_ID = 0;
 
 EAPI const Eo_Event_Description _EV_A_CHANGED =
-        EO_EVENT_DESCRIPTION("a,changed", "i", "Called when a has changed.");
+        EO_EVENT_DESCRIPTION("a,changed", "Called when a has changed.");
 
 #define MY_CLASS SIMPLE_CLASS
 
@@ -44,8 +44,8 @@ _class_constructor(Eo_Class *klass)
 }
 
 static const Eo_Op_Description op_desc[] = {
-     EO_OP_DESCRIPTION(SIMPLE_SUB_ID_A_SET, "i", "Set property A"),
-     EO_OP_DESCRIPTION_CONST(SIMPLE_SUB_ID_A_GET, "i", "Get property A"),
+     EO_OP_DESCRIPTION(SIMPLE_SUB_ID_A_SET, "Set property A"),
+     EO_OP_DESCRIPTION_CONST(SIMPLE_SUB_ID_A_GET, "Get property A"),
      EO_OP_DESCRIPTION_SENTINEL
 };