(self)
| 310 | self.timer.stop() |
| 311 | |
| 312 | def setupIcon(self): |
| 313 | icon_file = os.path.join(os.path.abspath(os.path.dirname(__file__)), |
| 314 | "resources", "{0}.png".format(sys.argv[1])) |
| 315 | if os.path.exists(icon_file): |
| 316 | self.setWindowIcon(QIcon(icon_file)) |
| 317 | |
| 318 | |
| 319 | class LoadHandler(object): |