--- APPS LIST REFRESH ---
| 1211 | |
| 1212 | // --- APPS LIST REFRESH --- |
| 1213 | void MainWindow::appsListRefresh() { |
| 1214 | uint32_t ncid; |
| 1215 | if (!remoteEnsureConnected(ncid)) { return; } |
| 1216 | |
| 1217 | // Get list of apps from the remote server. |
| 1218 | std::string appList = client.getApplicationList(remotes[ncid].handle); |
| 1219 | |
| 1220 | // Update local list. |
| 1221 | ui->remoteAppsComboBox->clear(); |
| 1222 | QStringList appItems = (QString::fromStdString(appList)).split("\n", QString::SkipEmptyParts); |
| 1223 | ui->remoteAppsComboBox->addItems(appItems); |
| 1224 | } |
| 1225 | |
| 1226 | |
| 1227 | // --- SEND COMMAND --- |
nothing calls this directly
no test coverage detected