QString::KeepEmptyParts -> Qt::KeepEmptyParts #993

This commit is contained in:
Mike McFadden 2024-11-25 16:16:31 -05:00
parent 4c4c24b1b9
commit 4878686f9b

View File

@ -136,7 +136,7 @@ void RDTimeEdit::fixup(QString &input) const
// Don't allow higher precision than tenths of a second
//
if(d_show_tenths) {
QStringList f0=input.split(".",QString::KeepEmptyParts);
QStringList f0=input.split(".",Qt::KeepEmptyParts);
if(f0.size()==2) {
QStringList f1=f0.at(1).split(" ");
if(f1.at(0).length()>1) {