deleted: README.md~

modified:   c/CtrlCheckLinks.rb
	new file:   fichier/dir/d/zz
	modified:   v/VueResult.rb
This commit is contained in:
Quentin
2014-01-10 11:35:05 +01:00
parent 7bf4004c31
commit c2867bbe0d
6 changed files with 52 additions and 16 deletions

View File

@ -13,7 +13,7 @@ class CtrlCheckLinks
def recupUrls(str)
f = ReadFile.new(str)
@urls = f.getUrls
self.vueResult(self.verifLiens(@urls))
self.vueResult(self.verifLiens(@urls), str)
end
def recupUrlsDoss(str)
@ -45,8 +45,8 @@ class CtrlCheckLinks
return resultats
end
def vueResult(resultats)
v = VueResult.new(resultats)
def vueResult(resultats, nom)
v = VueResult.new(resultats, nom)
v.getWindow.show_all
Gtk.main