MCPcopy Create free account
hub / github.com/KDE/kdevelop / formats

Method formats

plugins/debuggercommon/registers/modelsmanager.cpp:295–308  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

293}
294
295QVector<Format> ModelsManager::formats(const QString& group) const
296{
297 QVector<Format> formats; formats << Raw;
298
299 const auto namesOfRegisterGroups = m_controller->namesOfRegisterGroups();
300 for (const GroupsName& g : namesOfRegisterGroups) {
301 if (g.name() == group) {
302 formats = m_controller->formats(g);
303 break;
304 }
305 }
306
307 return formats;
308}
309
310void ModelsManager::save(const GroupsName& g)
311{

Callers 5

updateColorsFromThemeMethod · 0.45
contextMenuEventMethod · 0.45
saveMethod · 0.45
loadMethod · 0.45

Calls 2

namesOfRegisterGroupsMethod · 0.45
nameMethod · 0.45

Tested by

no test coverage detected