(self)
| 1409 | self.close() |
| 1410 | |
| 1411 | def getPlaylistState(self): |
| 1412 | playlistItems = [] |
| 1413 | for playlistItem in range(self.playlist.count()): |
| 1414 | playlistItemText = self.playlist.item(playlistItem).text() |
| 1415 | if playlistItemText != getMessage("playlist-instruction-item-message"): |
| 1416 | playlistItems.append(playlistItemText) |
| 1417 | return playlistItems |
| 1418 | |
| 1419 | def playlistChangeCheck(self): |
| 1420 | if self.updatingPlaylist: |
no test coverage detected