OSDN Git Service

In OpenOffice.org/LibreOffice Calc, reading spreadsheet cells now works correctly.
authorJames Teh <jamie@jantrid.net>
Fri, 2 Nov 2012 05:04:28 +0000 (15:04 +1000)
committerJames Teh <jamie@jantrid.net>
Fri, 2 Nov 2012 05:04:28 +0000 (15:04 +1000)
Fixes #2765.

source/appModules/soffice.py
user_docs/en/changes.t2t

index 3dfe67f..bafbf02 100755 (executable)
@@ -67,13 +67,13 @@ class JAB_OOTableCell(JAB):
 \r
        def _get_rowNumber(self):\r
                try:\r
-                       return gridCoordStringToNumbers(self.name)[0]\r
+                       return gridCoordStringToNumbers(self.cellCoordsText)[0]\r
                except ValueError:\r
                        return 0\r
 \r
        def _get_columnNumber(self):\r
                try:\r
-                       return gridCoordStringToNumbers(self.name)[1]\r
+                       return gridCoordStringToNumbers(self.cellCoordsText)[1]\r
                except ValueError:\r
                        return 0\r
 \r
index a1b75a5..a5fdf9b 100644 (file)
@@ -105,6 +105,7 @@ Highlights of this release include support for Asian character input; experiment
 - NVDA will no longer fail to start when the user's profile path contains certain multibyte characters. (#2729)\r
 - In browse mode in Google Chrome, the text of tabs is now rendered correctly.\r
 - In browse mode, menu buttons are now reported correctly.\r
+- In OpenOffice.org/LibreOffice Calc, reading spreadsheet cells now works correctly. (#2765)\r
 \r
 \r
 == Changes for Developers ==\r