mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-12 07:35:55 +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:
@@ -524,7 +524,7 @@ void RDConfig::load()
|
||||
strcpy(sname,"windows");
|
||||
#else
|
||||
gethostname(sname,255);
|
||||
QStringList list=list.split(".",sname); // Strip domain name parts
|
||||
QStringList list=QString(sname).split("."); // Strip domain name parts
|
||||
strncpy(sname,list[0],256);
|
||||
#endif
|
||||
conf_station_name=
|
||||
|
||||
Reference in New Issue
Block a user