diff --git a/src/shell/qmlpackages/CMakeLists.txt b/src/shell/qmlpackages/CMakeLists.txt index 903887e76..776b5a537 100644 --- a/src/shell/qmlpackages/CMakeLists.txt +++ b/src/shell/qmlpackages/CMakeLists.txt @@ -1,6 +1,5 @@ installPackage(desktop org.kde.desktop plasma/shells shell) installPackage(lookandfeel org.kde.lookandfeel plasma/look-and-feel lookandfeel) -installPackage(toolbox org.kde.toolbox plasma/packages package) add_subdirectory(wallpapers) diff --git a/src/shell/qmlpackages/toolbox/contents/ui/main.qml b/src/shell/qmlpackages/toolbox/contents/ui/main.qml deleted file mode 100644 index 05a63749b..000000000 --- a/src/shell/qmlpackages/toolbox/contents/ui/main.qml +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright 2013 Marco Martin - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 2.010-1301, USA. - */ - -import QtQuick 2.0 - -Rectangle { - id: root - color: "white" - width: mainText.width - height: mainText.height - - anchors { - top: parent.top - right: parent.right - } - - Text { - id: mainText - text: "Desktop Toolbox" - } - - Component.onCompleted: { - print("Toolbox loaded") - } -} \ No newline at end of file diff --git a/src/shell/qmlpackages/toolbox/metadata.desktop b/src/shell/qmlpackages/toolbox/metadata.desktop deleted file mode 100644 index 59489c495..000000000 --- a/src/shell/qmlpackages/toolbox/metadata.desktop +++ /dev/null @@ -1,27 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Keywords= -Name=Desktop Toolbox -Name[cs]=Nástroje plochy -Name[de]=Werkzeugkasten für die Arbeitsfläche -Name[es]=Caja de herramientas del escritorio -Name[fr]=Boîte à outils du bureau -Name[mr]=डेस्कटॉप साधने -Name[nl]=Bureaubladhulpmiddel -Name[pt]=Ferramentas da Área de Trabalho -Name[pt_BR]=Barra de ferramentas da área de trabalho -Name[sk]=Nástroje plochy -Name[sv]=Skrivbordsverktygslåda -Name[uk]=Набір інструментів для стаціонарних комп’ютерів -Name[x-test]=xxDesktop Toolboxxx -Type=Service - -X-KDE-ParentApp= -X-KDE-PluginInfo-Author=Marco Martin -X-KDE-PluginInfo-Category= -X-KDE-PluginInfo-Email=mart@kde.org -X-KDE-PluginInfo-License=GPLv2+ -X-KDE-PluginInfo-Name=org.kde.toolbox -X-KDE-PluginInfo-Version= -X-KDE-PluginInfo-Website= -X-Plasma-MainScript=ui/main.qml