MCPcopy Create free account
hub / github.com/cxasm/notepad-- / KeyModifiers

Method KeyModifiers

src/qscint/scintilla/src/KeyMap.h:28–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26 int key;
27 int modifiers;
28 KeyModifiers(int key_, int modifiers_) : key(key_), modifiers(modifiers_) {
29 }
30 bool operator<(const KeyModifiers &other) const {
31 if (key == other.key)
32 return modifiers < other.modifiers;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected