MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / isValid

Method isValid

src/qt/qvalidatedlineedit.cpp:116–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

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