Mass Rename: LoadIgnoreList() --> load_ignore_list()

--HG--
extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%4018
This commit is contained in:
hsoft 2009-06-07 07:16:58 +00:00
parent 57f89183bb
commit 7760ef1b21
4 changed files with 5 additions and 5 deletions

View File

@ -40,7 +40,7 @@ class PyDupeGuru(PyApp):
return self.app.ExportToXHTML(column_ids,xslt_path,css_path)
def loadIgnoreList(self):
self.app.LoadIgnoreList()
self.app.load_ignore_list()
def loadResults(self):
self.app.load()

View File

@ -42,7 +42,7 @@ class PyDupeGuru(PyApp):
return self.app.ExportToXHTML(column_ids,xslt_path,css_path)
def loadIgnoreList(self):
self.app.LoadIgnoreList()
self.app.load_ignore_list()
def loadResults(self):
self.app.load()

View File

@ -179,9 +179,9 @@ class DupeGuru(RegistrableApplication):
def load(self):
self._start_job(JOB_LOAD, self._do_load)
self.LoadIgnoreList()
self.load_ignore_list()
def LoadIgnoreList(self):
def load_ignore_list(self):
p = op.join(self.appdata, 'ignore_list.xml')
self.scanner.ignore_list.load_from_xml(p)

View File

@ -39,7 +39,7 @@ class PyDupeGuru(PyApp):
return self.app.ExportToXHTML(column_ids,xslt_path,css_path)
def loadIgnoreList(self):
self.app.LoadIgnoreList()
self.app.load_ignore_list()
def loadResults(self):
self.app.load()