2025-07-02 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in 'lib/rdtimeedit.cpp' that broke the build
	on CentOS 7.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2025-07-02 09:03:18 -04:00
parent b9b396012b
commit bb6c165fde
2 changed files with 4 additions and 1 deletions

View File

@ -25009,3 +25009,6 @@
2025-07-01 Fred Gleason <fredg@paravelsystems.com>
* Incremented the pacakge version to 4.3.0int11.
* Incremented the Python API version to 4.3.0post4.
2025-07-02 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in 'lib/rdtimeedit.cpp' that broke the build
on CentOS 7.

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(".",Qt::KeepEmptyParts);
QStringList f0=input.split(".",QString::KeepEmptyParts);
if(f0.size()==2) {
QStringList f1=f0.at(1).split(" ");
if(f1.at(0).length()>1) {