| 171 | } |
| 172 | |
| 173 | void Dialog::revokeAccess() |
| 174 | { |
| 175 | QPointer<KPasswordDialog> dlg = new KPasswordDialog(this); |
| 176 | dlg->setPrompt(i18n("Please, write your password here.")); |
| 177 | if(dlg->exec()) { |
| 178 | m_account->invalidate(dlg->password()); |
| 179 | emit shouldUpdate(); |
| 180 | close(); |
| 181 | } |
| 182 | delete dlg; |
| 183 | } |
| 184 | |
| 185 | } // End of namespace gh |
| 186 |
no test coverage detected