| 3412 | } |
| 3413 | |
| 3414 | void Config::clearSharedViews() |
| 3415 | { |
| 3416 | int numViews = getNumViews(VIEW_SHARED, nullptr); |
| 3417 | for (int v = numViews - 1; v >= 0; v--) |
| 3418 | { |
| 3419 | const char * sharedViewName = getView(VIEW_SHARED, nullptr, v); |
| 3420 | if (sharedViewName && *sharedViewName) |
| 3421 | { |
| 3422 | removeSharedView(sharedViewName); |
| 3423 | } |
| 3424 | } |
| 3425 | } |
| 3426 | |
| 3427 | const char * Config::getDefaultDisplay() const |
| 3428 | { |
no outgoing calls