readability: Rename asWidget() to asQWidget()

This commit is contained in:
Sergio Martins
2020-05-24 20:03:02 +01:00
parent 3bbc33d8c4
commit de0bcf9ce3
9 changed files with 19 additions and 19 deletions

View File

@@ -36,7 +36,7 @@ class RubberBand : public QRubberBand
public:
RubberBand(Layouting::Widget *parent)
: QRubberBand(QRubberBand::Line, parent ? parent->asWidget() : nullptr)
: QRubberBand(QRubberBand::Line, parent ? parent->asQWidget() : nullptr)
, Layouting::Widget_qwidget(this) {
}
};