Implemented QET coding style (replaced 4 space with tab)

This commit is contained in:
Adrien Allain
2021-09-13 21:00:44 +02:00
committed by Laurent Trinques
parent c640d96bca
commit ccfb46b354
10 changed files with 83 additions and 83 deletions

View File

@@ -173,14 +173,14 @@ void PartRectangle::setYRadius(qreal Y)
void PartRectangle::setRotation(qreal angle) {
QTransform rotation = QTransform().rotate(angle-m_rot);
m_rot=angle;
QTransform rotation = QTransform().rotate(angle-m_rot);
m_rot=angle;
setRect(rotation.mapRect(m_rect));
setRect(rotation.mapRect(m_rect));
}
qreal PartRectangle::rotation() const {
return m_rot;
return m_rot;
}
/**