Remove View::minimumSizeHint()

It's a QWidget specific concept, so move it to the qtwidgets
frontendcode. QtQuick won't need it.
This commit is contained in:
Sergio Martins
2022-04-29 00:27:07 +01:00
parent 93ccaff407
commit 3d1b450cbb
13 changed files with 61 additions and 80 deletions

View File

@@ -33,10 +33,8 @@ public:
explicit ViewWrapper(Controller *controller, QObject *thisObj); // TODOv2: Remove thisObj argument once all calls to asQWidget() are removed
void setParent(View *) override;
QSize minSize() const override;
void setMinimumSize(QSize) override;
QSize maxSizeHint() const override;
QSize minimumSizeHint() const override;
QRect normalGeometry() const override;
void setWidth(int width) override;
void setHeight(int height) override;