2018-08-08 Fred Gleason <fredg@paravelsystems.com>

* Modified all instances of 'QStringList::split()' calls to use
	'QString::split()'.
This commit is contained in:
Fred Gleason
2018-08-08 18:11:23 -04:00
parent e3bb963c3f
commit 8d11616b4b
44 changed files with 145 additions and 146 deletions

View File

@@ -173,7 +173,7 @@ void RDCddbLookup::readyReadData()
case 2: // Query Response
switch(code) {
case 200: // Exact Match
f0=f0.split(" ",line,true);
f0=line.split(" ");
if(f0.size()>=4) {
lookup_record->setDiscId(f0[2].toInt(&ok,16));
if(!ok) {