MCPcopy Create free account
hub / github.com/dail8859/NotepadNext / FindProperty

Method FindProperty

src/IFaceTableMixer.cpp:54–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52}
53
54const IFaceProperty *IFaceTableMixer::FindProperty(const char *name) const {
55 for (auto const &iface : ifaces) {
56 const IFaceProperty *ret = iface->FindProperty(name);
57 if (ret != nullptr) return ret;
58 }
59 return nullptr;
60}
61
62int IFaceTableMixer::GetConstantName(int value, char *nameOut, unsigned nameBufferLen, const char *hint) const {
63 for (auto const &iface : ifaces) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected