| 48 | } |
| 49 | |
| 50 | void PwAppManager::onAppRemoved(const uint64_t serial) |
| 51 | { |
| 52 | for (int n = 0; n < apps.length(); n++) |
| 53 | { |
| 54 | if (apps[n].serial == serial) |
| 55 | { |
| 56 | apps.removeAt(n); |
| 57 | emit appRemoved(serial); |
| 58 | break; |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | QList<AppNode> PwAppManager::activeApps() const |
| 64 | { |