massive refactoring

This commit is contained in:
2017-05-05 17:55:52 +03:00
parent 6e62ceaac7
commit d0c96ce829
152 changed files with 3041 additions and 3219 deletions

View File

@ -39,13 +39,13 @@ 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, const int _min, const int _max);
QList<int> toList();
} QCronField;
explicit QCronScheduler(QObject *parent);
explicit QCronScheduler(QObject *_parent = nullptr);
virtual ~QCronScheduler();
void parse(const QString &timer);
void parse(const QString &_timer);
signals:
void activated();
@ -56,8 +56,8 @@ private slots:
private:
QCronRunSchedule m_schedule;
QTimer *m_timer = nullptr;
QList<int> parseField(const QString &value, const int min,
const int max) const;
QList<int> parseField(const QString &_value, const int _min,
const int _max) const;
};