Try to fix FTBFS on Debian Bullseye

This commit is contained in:
Laurent Trinques
2022-11-04 21:34:24 +01:00
parent e3cc89b546
commit ad97559b7c
2 changed files with 2 additions and 2 deletions

View File

@@ -158,7 +158,7 @@ void ElementsMover::continueMovement(const QPointF &movement)
if (m_status_bar)
{
const auto point_{m_movement_driver->scenePos()};
m_status_bar->showMessage(QString(QLatin1String("x %1 : y %2")).arg((QString::number(point_.x()), QString::number(point_.y()))));
m_status_bar->showMessage(QString(QLatin1String("x %1 : y %2")).arg(QString::number(point_.x()), QString::number(point_.y())));
}
}