summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/kernel')
-rw-r--r--src/gui/kernel/qwindow.cpp11
-rw-r--r--src/gui/kernel/qwindow.h3
2 files changed, 1 insertions, 13 deletions
diff --git a/src/gui/kernel/qwindow.cpp b/src/gui/kernel/qwindow.cpp
index 1b154770f8..c06f03f4e7 100644
--- a/src/gui/kernel/qwindow.cpp
+++ b/src/gui/kernel/qwindow.cpp
@@ -685,17 +685,6 @@ QWindow *QWindow::parent(AncestorMode mode) const
}
/*!
- 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 b7c2af4916..2cca039883 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;