| 1143 | } |
| 1144 | |
| 1145 | void CaptureDialog::UpdateRemoteHost() |
| 1146 | { |
| 1147 | if(m_Ctx.Replay().CurrentRemote().Protocol() && |
| 1148 | m_Ctx.Replay().CurrentRemote().Protocol()->GetProtocolName() == "adb") |
| 1149 | ui->cmdLineLabel->setText(tr("Intent Arguments")); |
| 1150 | else |
| 1151 | ui->cmdLineLabel->setText(tr("Command-line Arguments")); |
| 1152 | } |
| 1153 | |
| 1154 | void CaptureDialog::SetEnvironmentModifications(const rdcarray<EnvironmentModification> &modifications) |
| 1155 | { |
no test coverage detected