fix typo in fuction-name (looked like a mixture of French and English)

This commit is contained in:
plc-user
2025-02-14 16:47:39 +01:00
parent 43f0107eb1
commit 3471140b64
16 changed files with 55 additions and 55 deletions

View File

@@ -203,7 +203,7 @@ void Conductor::segmentsToPath()
if (isSelected() && !m_moving_segment)
{
if(handlerPoints().size() == m_handler_vector.size())
adjusteHandlerPos();
adjustHandlerPos();
else
{
removeHandler();
@@ -718,7 +718,7 @@ QVariant Conductor::itemChange(GraphicsItemChange change, const QVariant &value)
calculateTextItemPosition();
}
else if (change == QGraphicsItem::ItemPositionHasChanged && isSelected()) {
adjusteHandlerPos();
adjustHandlerPos();
}
return(QGraphicsObject::itemChange(change, value));
@@ -770,10 +770,10 @@ bool Conductor::sceneEventFilter(QGraphicsItem *watched, QEvent *event)
}
/**
@brief Conductor::adjusteHandlerPos
@brief Conductor::adjustHandlerPos
Adjust the position of the handler item
*/
void Conductor::adjusteHandlerPos()
void Conductor::adjustHandlerPos()
{
if (m_handler_vector.isEmpty())
return;