| 58 | } |
| 59 | |
| 60 | void ClientManager::databaseUpdated(int count) |
| 61 | { |
| 62 | progress.interruptShow(); |
| 63 | progress.hide(); |
| 64 | if(count >= 0) { |
| 65 | emit messageSent(tr("Added %1 items to the database").arg(count)); |
| 66 | } else { |
| 67 | emit messageSent(tr("Database indexing aborted by user")); |
| 68 | } |
| 69 | emit updated(count); |
| 70 | } |
| 71 | |
| 72 | void ClientManager::showPinDialog(QString name, int pin) |
| 73 | { |
nothing calls this directly
no test coverage detected