1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Moved DELTA_COLUMNS from app to result_table.

This commit is contained in:
Virgil Dupras
2011-11-27 13:10:35 -05:00
parent fca66d5108
commit fc5a0d914b
13 changed files with 11 additions and 18 deletions

View File

@@ -127,9 +127,6 @@ class PyDupeGuruBase(PyFairware):
def resultsAreModified(self):
return self.py.results.is_modified
def deltaColumns(self):
return list(self.py.DELTA_COLUMNS)
#---Properties
@signature('v@:c')
def setMixFileKind_(self, mix_file_kind):

View File

@@ -17,6 +17,9 @@ class PyResultTable(PyTable):
def setDeltaValuesMode_(self, value):
self.py.delta_values = value
def deltaColumns(self):
return list(self.py.DELTA_COLUMNS)
@signature('@@:i@')
def valueForRow_column_(self, row_index, column):
return self.py.get_row_value(row_index, column)