MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / buildAcceleratorMap

Method buildAcceleratorMap

Engine/source/gui/core/guiControl.cpp:2258–2270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2256//-----------------------------------------------------------------------------
2257
2258void GuiControl::buildAcceleratorMap()
2259{
2260 //add my own accel key
2261 addAcceleratorKey();
2262
2263 //add all my childrens keys
2264 iterator i;
2265 for(i = begin(); i != end(); i++)
2266 {
2267 GuiControl *ctrl = static_cast<GuiControl *>(*i);
2268 ctrl->buildAcceleratorMap();
2269 }
2270}
2271
2272//-----------------------------------------------------------------------------
2273

Callers 3

setContentControlMethod · 0.80
pushDialogControlMethod · 0.80
popDialogControlMethod · 0.80

Calls 2

beginFunction · 0.85
endFunction · 0.85

Tested by

no test coverage detected