mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-07-18 16:19:58 +00:00
clang-tidy warning fixes
This commit is contained in:
@ -36,15 +36,15 @@ class AWStringFormatter : public AWAbstractFormatter
|
||||
public:
|
||||
explicit AWStringFormatter(QWidget *_parent = nullptr, const QString &_filePath = "");
|
||||
~AWStringFormatter() override;
|
||||
QString convert(const QVariant &_value) const override;
|
||||
AWStringFormatter *copy(const QString &_fileName, const int _number) override;
|
||||
[[nodiscard]] QString convert(const QVariant &_value) const override;
|
||||
AWStringFormatter *copy(const QString &_fileName, int _number) override;
|
||||
// properties
|
||||
int count() const;
|
||||
QChar fillChar() const;
|
||||
bool forceWidth() const;
|
||||
void setCount(const int _count);
|
||||
[[nodiscard]] int count() const;
|
||||
[[nodiscard]] QChar fillChar() const;
|
||||
[[nodiscard]] bool forceWidth() const;
|
||||
void setCount(int _count);
|
||||
void setFillChar(const QChar &_fillChar);
|
||||
void setForceWidth(const bool _forceWidth);
|
||||
void setForceWidth(bool _forceWidth);
|
||||
|
||||
public slots:
|
||||
void readConfiguration() override;
|
||||
|
Reference in New Issue
Block a user