MCPcopy Create free account
hub / github.com/Simsys/qhexedit2 / focusNextPrevChild

Method focusNextPrevChild

src/qhexedit.cpp:1005–1018  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1003}
1004
1005bool QHexEdit::focusNextPrevChild(bool next)
1006{
1007 if (_addressArea)
1008 {
1009 if ( (next && _editAreaIsAscii) || (!next && !_editAreaIsAscii ))
1010 return QWidget::focusNextPrevChild(next);
1011 else
1012 return false;
1013 }
1014 else
1015 {
1016 return QWidget::focusNextPrevChild(next);
1017 }
1018}
1019
1020// ********************************************************************** Handle selections
1021void QHexEdit::resetSelection()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected