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

Updated hscommon to its tip.

Because the latest changes in hscommon include the introduction of a base GUIObject which significantly changes view setting mechanisms, significant adjustments had to be made in dupeGuru.
This commit is contained in:
Virgil Dupras
2012-03-13 14:27:08 -04:00
parent 878c744c21
commit 49a7043b4d
11 changed files with 56 additions and 60 deletions

View File

@@ -9,10 +9,9 @@
from hscommon.notify import Listener
from hscommon.gui.base import NoopGUI
class GUIObject(Listener):
class DupeGuruGUIObject(Listener):
def __init__(self, app):
Listener.__init__(self, app)
self.view = NoopGUI()
self.app = app
def directories_changed(self):