mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-04-25 07:23:39 +02: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:
@@ -82,7 +82,7 @@ void RDProfile::setSourceString(const QString &str)
|
||||
profile_section.resize(0);
|
||||
profile_section.push_back(RDProfileSection());
|
||||
profile_section.back().setName("");
|
||||
lines=lines.split("\n",str);
|
||||
lines=str.split("\n");
|
||||
for(int i=0;i<lines.size();i++) {
|
||||
QString line=lines[i];
|
||||
if((line.left(1)!=";")&&(line.left(1)!="#")) {
|
||||
|
||||
Reference in New Issue
Block a user