[orca] Fix some nits carried over from LibreOffice table cleanup
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Fix some nits carried over from LibreOffice table cleanup
- Date: Sat, 6 Aug 2016 16:20:10 +0000 (UTC)
commit e678ab0badcfeca285cb035dcfd1d132d1f01ac2
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Sat Aug 6 12:18:52 2016 -0400
Fix some nits carried over from LibreOffice table cleanup
src/orca/script_utilities.py | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/orca/script_utilities.py b/src/orca/script_utilities.py
index e8c1c14..27a27d0 100644
--- a/src/orca/script_utilities.py
+++ b/src/orca/script_utilities.py
@@ -1020,7 +1020,7 @@ class Utilities:
return pyatspi.findAncestor(obj, self.isSpreadSheetTable)
def cellColumnChanged(self, cell):
- row, column = self._script.utilities.coordinatesForCell(cell)
+ row, column = self.coordinatesForCell(cell)
if column == -1:
return False
@@ -1028,7 +1028,7 @@ class Utilities:
return column != lastColumn
def cellRowChanged(self, cell):
- row, column = self._script.utilities.coordinatesForCell(cell)
+ row, column = self.coordinatesForCell(cell)
if row == -1:
return False
@@ -3510,7 +3510,7 @@ class Utilities:
if not self.isSpreadSheetCell(obj):
return startIndex, endIndex
- parent = self._script.utilities.getTable(obj)
+ parent = self.getTable(obj)
try:
component = parent.queryComponent()
except:
@@ -3532,7 +3532,7 @@ class Utilities:
return startIndex, endIndex
def getShowingCellsInSameRow(self, obj):
- parent = self._script.utilities.getTable(obj)
+ parent = self.getTable(obj)
try:
table = parent.queryTable()
except:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]