From: Mike Gorse Date: Thu, 26 Jun 2008 22:46:59 +0000 (-0400) Subject: Fix order of parameters in registerKeystrokeListener X-Git-Tag: AT_SPI2_ATK_2_12_0~644 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc842460e7a229857d8e57ae83166269d69f077b;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git Fix order of parameters in registerKeystrokeListener --- diff --git a/cspi/spi_registry.c b/cspi/spi_registry.c index 18cf592..48b84d8 100644 --- a/cspi/spi_registry.c +++ b/cspi/spi_registry.c @@ -226,7 +226,7 @@ SPI_registerAccessibleKeystrokeListener (AccessibleKeystrokeListener *listener, (dbus_bool_t) ((sync_type & SPI_KEYLISTENER_ALL_WINDOWS)!=0); dbus_error_init (&error); - dbind_connection_method_call (cspi_bus(), spi_bus_registry, spi_path_dec, spi_interface_dec, "registerKeystrokeListener", &error, "oa(iisi)uu(bbb)=>b", path, key_set, key_events, controller_event_mask, &listener_mode, &retval); + dbind_connection_method_call (cspi_bus(), spi_bus_registry, spi_path_dec, spi_interface_dec, "registerKeystrokeListener", &error, "oa(iisi)uu(bbb)=>b", path, key_set, controller_event_mask, key_set, &listener_mode, &retval); g_array_free (key_set, TRUE); g_free (path);