diff --git a/src/gui/kernel/qwindow.cpp b/src/gui/kernel/qwindow.cpp index 1b154770f8c..c06f03f4e7b 100644 --- a/src/gui/kernel/qwindow.cpp +++ b/src/gui/kernel/qwindow.cpp @@ -684,17 +684,6 @@ QWindow *QWindow::parent(AncestorMode mode) const return d->parentWindow ? d->parentWindow : (mode == IncludeTransients ? transientParent() : nullptr); } -/*! - Returns the parent window, if any. - - A window without a parent is known as a top level window. -*/ -QWindow *QWindow::parent() const -{ - Q_D(const QWindow); - return d->parentWindow; -} - /*! Sets the \a parent Window. This will lead to the windowing system managing the clip of the window, so it will be clipped to the \a parent window. diff --git a/src/gui/kernel/qwindow.h b/src/gui/kernel/qwindow.h index b7c2af4916d..2cca0398835 100644 --- a/src/gui/kernel/qwindow.h +++ b/src/gui/kernel/qwindow.h @@ -159,8 +159,7 @@ public: WId winId() const; - QWindow *parent(AncestorMode mode) const; - QWindow *parent() const; // ### Qt6: Merge with above + QWindow *parent(AncestorMode mode = ExcludeTransients) const; void setParent(QWindow *parent); bool isTopLevel() const;