X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=test%2Fapp.c;h=c4d29f4c0a5f78721170d0c35a60cd3114d1beef;hb=11518985294fd3a6847eac04c2dbde88f8e0d8b1;hp=1dfafdc906d87ec3b9c6eff7358396854377f296;hpb=ee75de39f4e8247f694b328163fc974ba791305f;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/test/app.c b/test/app.c index 1dfafdc..c4d29f4 100644 --- a/test/app.c +++ b/test/app.c @@ -23,11 +23,14 @@ #include #include #include +#include #include #include #include "accessible.h" #include "application.h" +#define APP_STATIC_BUFF_SZ 30 + int main(int argc, char **argv) { @@ -35,7 +38,7 @@ main(int argc, char **argv) CORBA_Object oclient; AtkObject *atko; char *obj_id; - char sbuf[30]; + char sbuf[APP_STATIC_BUFF_SZ]; Accessibility_Registry registry; Accessibility_Event e; @@ -50,10 +53,10 @@ main(int argc, char **argv) } /* Create the accesssible application server object */ - /* TODO: get app name and pid */ - sprintf(sbuf, "application-%s", argv[1]); + snprintf(sbuf, APP_STATIC_BUFF_SZ, "application-%s", argv[0]); + atko = g_object_new (atk_object_get_type(), NULL); - atk_object_set_name (atko, "sbuf"); + atk_object_set_name (atko, sbuf); atk_object_set_description( atko, "test application for accessibility SPI"); app = application_new(atko); @@ -61,9 +64,8 @@ main(int argc, char **argv) accessible = accessible_new (atko); fprintf(stderr, "accessible created.\n"); - /* FIXME: this type of event struct will leak, needs to be redefined */ - e.target = bonobo_object_corba_objref ( bonobo_object (accessible)); - e.type = CORBA_string_dup ("test"); + e.source = bonobo_object_corba_objref ( bonobo_object (accessible)); + e.type = CORBA_string_dup ("focus:"); obj_id = "OAFIID:Accessibility_Registry:proto0.1";