Compare commits

...

2 commits

Author SHA1 Message Date
Roman Telezhynskyi 54fdcf3cae Fix build issues. 2023-05-10 11:00:34 +03:00
Roman Telezhynskyi 04852c132c Until Qt 6 moc doesn't support trailing return type well. 2023-05-10 11:00:18 +03:00
3 changed files with 25 additions and 26 deletions

View file

@ -35,8 +35,6 @@
#include "fvavailableupdate.h" #include "fvavailableupdate.h"
#include "fvupdatewindow.h" #include "fvupdatewindow.h"
#include "../vmisc/defglobal.h"
class FvUpdater final : public QObject class FvUpdater final : public QObject
{ {
Q_OBJECT // NOLINT Q_OBJECT // NOLINT
@ -58,11 +56,11 @@ public:
public slots: public slots:
// Check for updates // Check for updates
auto CheckForUpdates(bool silentAsMuchAsItCouldGet = true) -> bool; bool CheckForUpdates(bool silentAsMuchAsItCouldGet = true); // NOLINT(modernize-use-trailing-return-type)
// Aliases // Aliases
auto CheckForUpdatesSilent() -> bool; bool CheckForUpdatesSilent(); // NOLINT(modernize-use-trailing-return-type)
auto CheckForUpdatesNotSilent() -> bool; bool CheckForUpdatesNotSilent(); // NOLINT(modernize-use-trailing-return-type)
protected: protected:
friend class FvUpdateWindow; // Uses GetProposedUpdate() and others friend class FvUpdateWindow; // Uses GetProposedUpdate() and others

View file

@ -62,8 +62,8 @@ protected:
private slots: private slots:
void on_actionNew_triggered(); void on_actionNew_triggered();
auto on_actionSaveAs_triggered() -> bool; bool on_actionSaveAs_triggered(); // NOLINT(modernize-use-trailing-return-type)
auto on_actionSave_triggered() -> bool; bool on_actionSave_triggered(); // NOLINT(modernize-use-trailing-return-type)
void on_actionOpen_triggered(); void on_actionOpen_triggered();
void on_actionExit_triggered(); void on_actionExit_triggered();

View file

@ -29,9 +29,10 @@
#include "../vgeometry/vabstractcurve.h" #include "../vgeometry/vabstractcurve.h"
#include "qmath.h" #include "qmath.h"
#include "vpiecegrainline_p.h" #include "vpiecegrainline_p.h"
#include <algorithm>
#include <QPolygonF>
#include <QTransform> #include <QTransform>
#include <algorithm>
namespace namespace
{ {
@ -216,10 +217,10 @@ auto VPieceGrainline::ArrowUp() const -> QPolygonF
const QPointF pt = mainLine.p2(); const QPointF pt = mainLine.p2();
return { return {
pt, {pt,
QPointF(pt.x() + arrowLength * cos(rotation + arrowAngle), pt.y() - arrowLength * sin(rotation + arrowAngle)), QPointF(pt.x() + arrowLength * cos(rotation + arrowAngle), pt.y() - arrowLength * sin(rotation + arrowAngle)),
QPointF(pt.x() + arrowLength * cos(rotation - arrowAngle), pt.y() - arrowLength * sin(rotation - arrowAngle)), QPointF(pt.x() + arrowLength * cos(rotation - arrowAngle), pt.y() - arrowLength * sin(rotation - arrowAngle)),
pt}; pt}};
} }
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
@ -230,10 +231,10 @@ auto VPieceGrainline::ArrowDown() const -> QPolygonF
const QPointF pt = mainLine.p1(); const QPointF pt = mainLine.p1();
return { return {
pt, {pt,
QPointF(pt.x() + arrowLength * cos(rotation + arrowAngle), pt.y() - arrowLength * sin(rotation + arrowAngle)), QPointF(pt.x() + arrowLength * cos(rotation + arrowAngle), pt.y() - arrowLength * sin(rotation + arrowAngle)),
QPointF(pt.x() + arrowLength * cos(rotation - arrowAngle), pt.y() - arrowLength * sin(rotation - arrowAngle)), QPointF(pt.x() + arrowLength * cos(rotation - arrowAngle), pt.y() - arrowLength * sin(rotation - arrowAngle)),
pt}; pt}};
} }
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
@ -243,10 +244,10 @@ auto VPieceGrainline::ArrowLeft() const -> QPolygonF
const QPointF pt = SecondaryLine().p1(); const QPointF pt = SecondaryLine().p1();
return { return {
pt, {pt,
QPointF(pt.x() + arrowLength * cos(rotation - arrowAngle), pt.y() - arrowLength * sin(rotation - arrowAngle)), QPointF(pt.x() + arrowLength * cos(rotation - arrowAngle), pt.y() - arrowLength * sin(rotation - arrowAngle)),
QPointF(pt.x() + arrowLength * cos(rotation + arrowAngle), pt.y() - arrowLength * sin(rotation + arrowAngle)), QPointF(pt.x() + arrowLength * cos(rotation + arrowAngle), pt.y() - arrowLength * sin(rotation + arrowAngle)),
pt}; pt}};
} }
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
@ -256,10 +257,10 @@ auto VPieceGrainline::ArrowRight() const -> QPolygonF
const QPointF pt = SecondaryLine().p2(); const QPointF pt = SecondaryLine().p2();
return { return {
pt, {pt,
QPointF(pt.x() + arrowLength * cos(rotation + arrowAngle), pt.y() - arrowLength * sin(rotation + arrowAngle)), QPointF(pt.x() + arrowLength * cos(rotation + arrowAngle), pt.y() - arrowLength * sin(rotation + arrowAngle)),
QPointF(pt.x() + arrowLength * cos(rotation - arrowAngle), pt.y() - arrowLength * sin(rotation - arrowAngle)), QPointF(pt.x() + arrowLength * cos(rotation - arrowAngle), pt.y() - arrowLength * sin(rotation - arrowAngle)),
pt}; pt}};
} }
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
@ -403,7 +404,7 @@ auto VPieceGrainline::IsPositionValid(const QVector<QPointF> &contourPoints) con
grainLine = {mainLine}; grainLine = {mainLine};
for (auto line : grainLine) for (auto line : qAsConst(grainLine))
{ {
QVector<QPointF> points = VAbstractCurve::CurveIntersectLine(contourPoints, line); QVector<QPointF> points = VAbstractCurve::CurveIntersectLine(contourPoints, line);
for (auto &point : points) for (auto &point : points)
@ -416,7 +417,7 @@ auto VPieceGrainline::IsPositionValid(const QVector<QPointF> &contourPoints) con
} }
QPainterPath grainLinePath; QPainterPath grainLinePath;
for (auto line : grainLine) for (auto line : qAsConst(grainLine))
{ {
grainLinePath.addPath(VGObject::PainterPath(QVector<QPointF>{line.p1(), line.p2()})); grainLinePath.addPath(VGObject::PainterPath(QVector<QPointF>{line.p1(), line.p2()}));
} }