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

Method save

kdevplatform/debugger/breakpoint/breakpoint.cpp:282–291  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280
281
282void Breakpoint::save(KConfigGroup& config)
283{
284 config.writeEntry("kind", BREAKPOINT_KINDS[m_kind]);
285 config.writeEntry("enabled", m_enabled);
286 config.writeEntry("url", m_url);
287 config.writeEntry("line", m_line);
288 config.writeEntry("expression", m_expression);
289 config.writeEntry("condition", m_condition);
290 config.writeEntry("ignoreHits", m_ignoreHits);
291}
292
293Breakpoint::BreakpointKind Breakpoint::kind() const
294{

Callers 5

initMethod · 0.45
testDocumentSaveMethod · 0.45
testDocumentReloadMethod · 0.45

Calls 1

writeEntryMethod · 0.80

Tested by 5

initMethod · 0.36
testDocumentSaveMethod · 0.36
testDocumentReloadMethod · 0.36