| 907 | } |
| 908 | return false; |
| 909 | } |
| 910 | |
| 911 | void ControlObjectContainer::LoadControls(const ParamEntry& cls) |
| 912 | { |
| 913 | const ParamEntry* cfg = cls.FindEntry("controls"); |
| 914 | if (cfg) |
| 915 | { |
| 916 | if (cfg->IsClass()) |
| 917 | { |
| 918 | for (int i = 0; i < cfg->GetEntryCount(); i++) |
| 919 | { |
| 920 | const ParamEntry& ctrlCls = cfg->GetEntry(i); |
| 921 | if (!ctrlCls.IsClass()) |
| 922 | { |
no test coverage detected