(self)
| 1912 | self.readyPushButton.setIcon(QtGui.QPixmap(resourcespath + 'empty_checkbox.png')) |
| 1913 | |
| 1914 | def updateAutoPlayIcon(self): |
| 1915 | ready = self.autoplayPushButton.isChecked() |
| 1916 | if ready: |
| 1917 | self.autoplayPushButton.setIcon(QtGui.QPixmap(resourcespath + 'tick_checkbox.png')) |
| 1918 | else: |
| 1919 | self.autoplayPushButton.setIcon(QtGui.QPixmap(resourcespath + 'empty_checkbox.png')) |
| 1920 | |
| 1921 | def automaticUpdateCheck(self): |
| 1922 | currentDateTimeValue = QDateTime.currentDateTime() |
no outgoing calls
no test coverage detected