[#3] pe cocoa: adapted to the recent API changes.

--HG--
extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%4069
This commit is contained in:
hsoft 2009-06-16 09:09:51 +00:00
parent 26b2599bf4
commit cda0cdf542
1 changed files with 6 additions and 0 deletions

View File

@ -71,9 +71,15 @@ class PyDupeGuru(PyApp):
def refreshDetailsWithSelected(self):
self.app.RefreshDetailsWithSelected()
def selectedResultNodePaths(self):
return self.app.selected_result_node_paths()
def selectResultNodePaths_(self,node_paths):
self.app.SelectResultNodePaths(node_paths)
def selectedPowerMarkerNodePaths(self):
return self.app.selected_powermarker_node_paths()
def selectPowerMarkerNodePaths_(self,node_paths):
self.app.SelectPowerMarkerNodePaths(node_paths)