clang-tidy warning fixes

This commit is contained in:
2020-11-03 04:23:01 +03:00
parent e81d765098
commit 91abbdcd96
99 changed files with 392 additions and 436 deletions

View File

@ -39,7 +39,7 @@ public:
int minValue = -1;
int maxValue = -1;
int div = 1;
void fromRange(const QString &_range, const int _min, const int _max);
void fromRange(const QString &_range, int _min, int _max);
QList<int> toList();
} QCronField;
@ -56,7 +56,7 @@ private slots:
private:
QCronRunSchedule m_schedule;
QTimer *m_timer = nullptr;
static QList<int> parseField(const QString &_value, const int _min, const int _max);
static QList<int> parseField(const QString &_value, int _min, int _max);
};