mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-26 15:20:29 +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:
@@ -41,7 +41,7 @@ MainObject::MainObject(QObject *parent)
|
||||
MCAST_RECV_TEST_USAGE);
|
||||
for(unsigned i=0;i<cmd->keys();i++) {
|
||||
if(cmd->key(i)=="--from") {
|
||||
QStringList f0=f0.split(":",cmd->value(i));
|
||||
QStringList f0=cmd->value(i).split(":");
|
||||
if(f0.size()!=2) {
|
||||
fprintf(stderr,"mcast_recv_test: invalid argument to \"--from\"\n");
|
||||
exit(1);
|
||||
|
||||
Reference in New Issue
Block a user