mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-11 07:05:48 +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:
@@ -85,7 +85,7 @@ bool RDNotification::read(const QString &str)
|
||||
notify_action=RDNotification::NoAction;
|
||||
notify_id=QVariant();
|
||||
|
||||
QStringList args=args.split(" ",str);
|
||||
QStringList args=str.split(" ");
|
||||
if(args.size()==4) {
|
||||
if(args[0]!="NOTIFY") {
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user