| 63 | } |
| 64 | |
| 65 | void SuggestRemoteDialog::remotesAdded() |
| 66 | { |
| 67 | if(m_Remotes->isEmpty()) |
| 68 | return; |
| 69 | |
| 70 | // update text and buttons to reflect that remote hosts are configured |
| 71 | ui->warning->setText(m_WarningStart + |
| 72 | tr("Currently you have no remote context selected, would you like\n") + |
| 73 | tr("to choose a remote context to replay on, or continue and load\n") + |
| 74 | tr("the capture locally?")); |
| 75 | |
| 76 | ui->remote->setEnabled(true); |
| 77 | ui->remote->setText(tr("Remote")); |
| 78 | } |
| 79 | |
| 80 | bool SuggestRemoteDialog::alwaysReplayLocally() |
| 81 | { |
no test coverage detected