mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-01-22 14:41:39 +00:00
Wrapped data modules around edition-specific core.app subclasses to prepare for data modules removal.
This commit is contained in:
@@ -9,7 +9,7 @@ install_cocoa_trans()
|
||||
|
||||
from hscommon.cocoa import signature
|
||||
|
||||
from core.app_cocoa_inter import PyDupeGuruBase, PyDetailsPanel
|
||||
from core.app_cocoa import PyDupeGuruBase, PyDetailsPanel
|
||||
from core_me.app_cocoa import DupeGuruME
|
||||
from core_me import __appname__
|
||||
from core.scanner import ScanType
|
||||
@@ -17,7 +17,7 @@ from core.scanner import ScanType
|
||||
class PyDupeGuru(PyDupeGuruBase):
|
||||
def init(self):
|
||||
self = super(PyDupeGuru,self).init()
|
||||
self.py = DupeGuruME()
|
||||
self._init(DupeGuruME)
|
||||
return self
|
||||
|
||||
def removeDeadTracks(self):
|
||||
|
||||
@@ -7,14 +7,14 @@
|
||||
from hscommon.trans import install_cocoa_trans
|
||||
install_cocoa_trans()
|
||||
|
||||
from core.app_cocoa_inter import PyDupeGuruBase, PyDetailsPanel
|
||||
from core.app_cocoa import PyDupeGuruBase, PyDetailsPanel
|
||||
from core_pe import app_cocoa as app_pe_cocoa, __appname__
|
||||
from core.scanner import ScanType
|
||||
|
||||
class PyDupeGuru(PyDupeGuruBase):
|
||||
def init(self):
|
||||
self = super(PyDupeGuru, self).init()
|
||||
self.py = app_pe_cocoa.DupeGuruPE()
|
||||
self._init(app_pe_cocoa.DupeGuruPE)
|
||||
return self
|
||||
|
||||
def clearPictureCache(self):
|
||||
|
||||
@@ -10,14 +10,14 @@ install_cocoa_trans()
|
||||
from hscommon.cocoa import signature
|
||||
|
||||
from core.scanner import ScanType
|
||||
from core.app_cocoa_inter import PyDupeGuruBase, PyDetailsPanel
|
||||
from core.app_cocoa import PyDupeGuruBase, PyDetailsPanel
|
||||
from core_se.app_cocoa import DupeGuru
|
||||
from core_se import __appname__
|
||||
|
||||
class PyDupeGuru(PyDupeGuruBase):
|
||||
def init(self):
|
||||
self = super(PyDupeGuru,self).init()
|
||||
self.py = DupeGuru()
|
||||
self._init(DupeGuru)
|
||||
return self
|
||||
|
||||
#---Properties
|
||||
|
||||
Reference in New Issue
Block a user