1 | /* |
---|---|
2 | This file is part of the KDE libraries |
3 | SPDX-FileCopyrightText: 1999 Matthias Ettrich <ettrich@kde.org> |
4 | SPDX-FileCopyrightText: 2007 Lubos Lunak <l.lunak@kde.org> |
5 | SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org> |
6 | |
7 | SPDX-License-Identifier: LGPL-2.1-or-later |
8 | */ |
9 | |
10 | #include "kwindowsystem_p_x11.h" |
11 | |
12 | #include "kx11extras.h" |
13 | |
14 | void KWindowSystemPrivateX11::activateWindow(QWindow *win, long time) |
15 | { |
16 | KX11Extras::activateWindow(win: win->winId(), time); |
17 | } |
18 | |
19 | bool KWindowSystemPrivateX11::showingDesktop() |
20 | { |
21 | return KX11Extras::showingDesktop(); |
22 | } |
23 | |
24 | void KWindowSystemPrivateX11::setShowingDesktop(bool showing) |
25 | { |
26 | KX11Extras::setShowingDesktop(showing); |
27 | } |
28 |