mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-07-29 13:39:55 +00:00
clang-tidy warning fixes
This commit is contained in:
@ -40,23 +40,23 @@ class AWFloatFormatter : public AWAbstractFormatter
|
||||
public:
|
||||
explicit AWFloatFormatter(QWidget *_parent = nullptr, const QString &_filePath = "");
|
||||
~AWFloatFormatter() override;
|
||||
QString convert(const QVariant &_value) const override;
|
||||
AWFloatFormatter *copy(const QString &_fileName, const int _number) override;
|
||||
[[nodiscard]] QString convert(const QVariant &_value) const override;
|
||||
AWFloatFormatter *copy(const QString &_fileName, int _number) override;
|
||||
// properties
|
||||
int count() const;
|
||||
QChar fillChar() const;
|
||||
bool forceWidth() const;
|
||||
char format() const;
|
||||
double multiplier() const;
|
||||
int precision() const;
|
||||
double summand() const;
|
||||
void setCount(const int _count);
|
||||
[[nodiscard]] int count() const;
|
||||
[[nodiscard]] QChar fillChar() const;
|
||||
[[nodiscard]] bool forceWidth() const;
|
||||
[[nodiscard]] char format() const;
|
||||
[[nodiscard]] double multiplier() const;
|
||||
[[nodiscard]] int precision() const;
|
||||
[[nodiscard]] double summand() const;
|
||||
void setCount(int _count);
|
||||
void setFillChar(const QChar &_fillChar);
|
||||
void setForceWidth(const bool _forceWidth);
|
||||
void setForceWidth(bool _forceWidth);
|
||||
void setFormat(char _format);
|
||||
void setMultiplier(const double _multiplier);
|
||||
void setPrecision(const int _precision);
|
||||
void setSummand(const double _summand);
|
||||
void setMultiplier(double _multiplier);
|
||||
void setPrecision(int _precision);
|
||||
void setSummand(double _summand);
|
||||
|
||||
public slots:
|
||||
void readConfiguration() override;
|
||||
|
Reference in New Issue
Block a user