aboutsummaryrefslogtreecommitdiffstats
path: root/src/share
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2017-11-01 12:19:15 +0100
committerEike Ziller <eike.ziller@qt.io>2017-11-03 07:30:52 +0000
commitba0faf229a0b728f66d39b121d7b50e9b0129916 (patch)
treec02a81149efb5dad13c650cf9fdc5ac51903ab4a /src/share
parentd6ff82a244853fd2a75fd59787a07284fa2c04d6 (diff)
Remove external tool for "sort text"
We now have Edit > Advanced > Sort selected lines Change-Id: I948718a1be432e00b2646b29f173894a51691164 Reviewed-by: André Hartmann <aha_1980@gmx.de>
Diffstat (limited to 'src/share')
-rw-r--r--src/share/qtcreator/data.pro1
-rw-r--r--src/share/qtcreator/externaltools/sort.xml38
2 files changed, 0 insertions, 39 deletions
diff --git a/src/share/qtcreator/data.pro b/src/share/qtcreator/data.pro
index 5ae7d1d269..fc96289f3a 100644
--- a/src/share/qtcreator/data.pro
+++ b/src/share/qtcreator/data.pro
@@ -9,7 +9,6 @@ STATIC_INSTALL_BASE = $$INSTALL_DATA_PATH
STATIC_FILES = \
$$PWD/externaltools/lrelease.xml \
$$PWD/externaltools/lupdate.xml \
- $$PWD/externaltools/sort.xml \
$$PWD/externaltools/qmlviewer.xml \
$$PWD/externaltools/qmlscene.xml
unix {
diff --git a/src/share/qtcreator/externaltools/sort.xml b/src/share/qtcreator/externaltools/sort.xml
deleted file mode 100644
index e5918f0b4f..0000000000
--- a/src/share/qtcreator/externaltools/sort.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt Creator.
-**
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-****************************************************************************/
-
--->
-<externaltool id="sort">
- <description>Sorts the selected text</description>
- <displayname>Sort Selection</displayname>
- <category>Text</category>
- <executable output="replaceselection" error="ignore">
- <path>sort</path>
- <input>%{CurrentDocument:Selection}</input>
- <workingdirectory>%{CurrentDocument:Path}</workingdirectory>
- </executable>
-</externaltool>