1fb9f6f13a
The main advantage of SPDX license identifiers over the traditional license headers is that it's more difficult to overlook inappropriate licenses for kwin, for example GPL 3. We also don't have to copy a lot of boilerplate text. In order to create this change, I ran licensedigger -r -c from the toplevel source directory.
18 lines
559 B
QML
18 lines
559 B
QML
/********************************************************************
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2013 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*********************************************************************/
|
|
import QtQuick 2.0
|
|
import org.kde.plasma.components 2.0 as Plasma
|
|
|
|
Plasma.Button {
|
|
id: closeButton
|
|
iconSource: "window-close"
|
|
anchors.fill: parent
|
|
implicitWidth: units.iconSizes.medium
|
|
implicitHeight: implicitWidth
|
|
}
|