mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-29 08:43:58 +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:
@@ -574,7 +574,7 @@ QTime MainWidget::GetTime(const QString &str) const
|
||||
QTime ret;
|
||||
bool ok=false;
|
||||
|
||||
fields=fields.split(":",str);
|
||||
fields=str.split(":");
|
||||
if(fields.size()==3) {
|
||||
int hour=fields[0].toInt(&ok);
|
||||
if(ok&&(hour>=0)&&(hour<=23)) {
|
||||
|
||||
Reference in New Issue
Block a user