refactor: fix some spelling mistakes (#6196)
This commit is contained in:
@@ -26,13 +26,13 @@ public:
|
||||
std::optional<float> overrideScale() const;
|
||||
void setOverrideScale(std::optional<float>);
|
||||
|
||||
QSize scaleIndependantSize() const;
|
||||
int scaleIndependantWidth() const;
|
||||
int scaleIndependantHeight() const;
|
||||
void setScaleIndependantSize(int width, int height);
|
||||
void setScaleIndependantSize(QSize);
|
||||
void setScaleIndependantWidth(int value);
|
||||
void setScaleIndependantHeight(int value);
|
||||
QSize scaleIndependentSize() const;
|
||||
int scaleIndependentWidth() const;
|
||||
int scaleIndependentHeight() const;
|
||||
void setScaleIndependentSize(int width, int height);
|
||||
void setScaleIndependentSize(QSize);
|
||||
void setScaleIndependentWidth(int value);
|
||||
void setScaleIndependentHeight(int value);
|
||||
|
||||
protected:
|
||||
void childEvent(QChildEvent *) override;
|
||||
@@ -56,7 +56,7 @@ protected:
|
||||
private:
|
||||
float scale_{1.f};
|
||||
std::optional<float> overrideScale_;
|
||||
QSize scaleIndependantSize_;
|
||||
QSize scaleIndependentSize_;
|
||||
|
||||
std::vector<BaseWidget *> widgets_;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user