mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-11 23:25:57 +01:00
2018-08-08 Fred Gleason <fredg@paravelsystems.com>
* Modified all instances of 'QStringList::split()' calls to use 'QString::split()'.
This commit is contained in:
@@ -260,7 +260,7 @@ void Harlond::watchdogTimeoutData()
|
||||
void Harlond::ProcessResponse(const QString &str)
|
||||
{
|
||||
// LogLine(RDConfig::LogNotice,str);
|
||||
QStringList cmds=cmds.split(" ",str);
|
||||
QStringList cmds=str.split(" ");
|
||||
|
||||
if(cmds[0]=="PW") {
|
||||
if(cmds.size()==2) {
|
||||
|
||||
Reference in New Issue
Block a user