| 23 | QWidget * m_parent; |
| 24 | |
| 25 | struct BackupEntry |
| 26 | { |
| 27 | // path where we got the new file from |
| 28 | QString update; |
| 29 | // path of what is being actually updated |
| 30 | QString original; |
| 31 | // path where the backup of the updated file was placed |
| 32 | QString backup; |
| 33 | }; |
| 34 | QList <BackupEntry> m_replace_backups; |
| 35 | QList <BackupEntry> m_delete_backups; |
| 36 | enum Failure |
nothing calls this directly
no outgoing calls
no test coverage detected