| 1246 | } |
| 1247 | |
| 1248 | std::string Push2Control::GetModuleTypeToSpawn() |
| 1249 | { |
| 1250 | for (int i = 0; i < mSpawnLists.GetDropdowns().size(); ++i) |
| 1251 | { |
| 1252 | if (mSpawnLists.GetDropdowns()[i]->GetList()->GetValue() != -1) |
| 1253 | return mSpawnLists.GetDropdowns()[i]->GetList()->GetDisplayValue(mSpawnLists.GetDropdowns()[i]->GetList()->GetValue()); |
| 1254 | } |
| 1255 | |
| 1256 | return ""; |
| 1257 | } |
| 1258 | |
| 1259 | void Push2Control::SetDisplayModule(IDrawableModule* module, bool addToHistory) |
| 1260 | { |
nothing calls this directly
no test coverage detected