(self)
| 185 | self.setLayout(aboutLayout) |
| 186 | |
| 187 | def openLicense(self): |
| 188 | if isWindows(): |
| 189 | QtGui.QDesktopServices.openUrl(QUrl("file:///" + resourcespath + "license.rtf")) |
| 190 | else: |
| 191 | QtGui.QDesktopServices.openUrl(QUrl("file://" + resourcespath + "license.rtf")) |
| 192 | |
| 193 | def openDependencies(self): |
| 194 | if isWindows(): |
nothing calls this directly
no test coverage detected