[g-a-devel]a bug in at-spi/libspi/table.c



Hi,

In at-spi/libspi/table.c::impl_getColumnDescription, mistake to call atk_table_get_row_description.

see the patch:


Index: table.c
===================================================================
RCS file: /cvs/gnome/at-spi/libspi/table.c,v
retrieving revision 1.16
diff -u -r1.16 table.c
--- table.c	14 Apr 2003 13:21:54 -0000	1.16
+++ table.c	5 Sep 2003 07:58:31 -0000
@@ -197,7 +197,7 @@
 
   g_return_val_if_fail (table != NULL, CORBA_string_dup (""));
   
-  rv = atk_table_get_row_description (table, column);
+  rv = atk_table_get_column_description (table, column);
 
   if (rv)
     {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]