mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-17 16:11:12 +02:00
2021-09-01 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up deprecation warnings for 'QString::sprintf()'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -378,7 +378,7 @@ void RDGroupListModel::updateRow(int row,RDSqlQuery *q)
|
||||
texts.push_back(tr("[none]"));
|
||||
}
|
||||
else {
|
||||
texts.push_back(QString().sprintf("%06u",q->value(2).toUInt()));
|
||||
texts.push_back(QString::asprintf("%06u",q->value(2).toUInt()));
|
||||
}
|
||||
|
||||
// End Cart
|
||||
@@ -386,7 +386,7 @@ void RDGroupListModel::updateRow(int row,RDSqlQuery *q)
|
||||
texts.push_back(tr("[none]"));
|
||||
}
|
||||
else {
|
||||
texts.push_back(QString().sprintf("%06u",q->value(3).toUInt()));
|
||||
texts.push_back(QString::asprintf("%06u",q->value(3).toUInt()));
|
||||
}
|
||||
|
||||
// Enforce Range
|
||||
|
Reference in New Issue
Block a user