mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-12 15:45:59 +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:
@@ -1575,7 +1575,7 @@ int ListLog::PredictedStartHour(RDListViewItem *item)
|
||||
if(item==NULL) {
|
||||
return -1;
|
||||
}
|
||||
QStringList item_fields=QStringList().split(":",item->text(1));
|
||||
QStringList item_fields=item->text(1).split(":");
|
||||
if(item_fields.size()==3) {
|
||||
int item_hour=item_fields[0].replace("T","").toInt(&ok);
|
||||
if(ok) {
|
||||
|
||||
Reference in New Issue
Block a user