MCPcopy Create free account
hub / github.com/ElementsProject/elements / isValid

Method isValid

src/qt/qvalidatedlineedit.cpp:118–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116}
117
118bool QValidatedLineEdit::isValid()
119{
120 // use checkValidator in case the QValidatedLineEdit is disabled
121 if (checkValidator)
122 {
123 QString address = text();
124 int pos = 0;
125 if (checkValidator->validate(address, pos) == QValidator::Acceptable)
126 return true;
127 }
128
129 return valid;
130}

Callers 15

bumpFeeMethod · 0.45
NotificatorMethod · 0.45
rowCountMethod · 0.45
columnCountMethod · 0.45
dataMethod · 0.45
flagsMethod · 0.45
rowCountMethod · 0.45
columnCountMethod · 0.45
dataMethod · 0.45
rowCountMethod · 0.45
columnCountMethod · 0.45
dataMethod · 0.45

Calls 1

validateMethod · 0.45

Tested by 3

BumpFeeFunction · 0.36
TestGUIFunction · 0.36
TestRpcCommandFunction · 0.36