From cda0cdf5427ec416d84bbeab4d8b7200e7df6c43 Mon Sep 17 00:00:00 2001 From: hsoft Date: Tue, 16 Jun 2009 09:09:51 +0000 Subject: [PATCH] [#3] pe cocoa: adapted to the recent API changes. --HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%4069 --- pe/cocoa/py/dg_cocoa.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pe/cocoa/py/dg_cocoa.py b/pe/cocoa/py/dg_cocoa.py index 57b60f59..995d12a9 100644 --- a/pe/cocoa/py/dg_cocoa.py +++ b/pe/cocoa/py/dg_cocoa.py @@ -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)