diff options
author | Robert Loehning <robert.loehning@theqtcompany.com> | 2015-07-06 19:09:09 +0200 |
---|---|---|
committer | Robert Loehning <robert.loehning@theqtcompany.com> | 2015-07-09 09:56:11 +0000 |
commit | 7e30a74d41aea34a469c5d348219908c8b426986 (patch) | |
tree | 4ca1322d0bf3e81897f320f6458ae9a26ac83f7b /tests/manual/qml/testfiles/subcomponent.qml | |
parent | f36e79cfa2bc75adba339220011b8ddd42ec2c9d (diff) | |
download | qt-creator-7e30a74d41aea34a469c5d348219908c8b426986.tar.gz |
QmlDesigner: Remove unsupported testfiles
Change-Id: I236b26646752783d4956f3c290d1e6463bef5efa
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
Diffstat (limited to 'tests/manual/qml/testfiles/subcomponent.qml')
-rw-r--r-- | tests/manual/qml/testfiles/subcomponent.qml | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/tests/manual/qml/testfiles/subcomponent.qml b/tests/manual/qml/testfiles/subcomponent.qml deleted file mode 100644 index 48d4dd9c12..0000000000 --- a/tests/manual/qml/testfiles/subcomponent.qml +++ /dev/null @@ -1,47 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2015 The Qt Company Ltd. -** Contact: http://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 http://www.qt.io/terms-conditions. For further information -** use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 or version 3 as published by the Free -** Software Foundation and appearing in the file LICENSE.LGPLv21 and -** LICENSE.LGPLv3 included in the packaging of this file. Please review the -** following information to ensure the GNU Lesser General Public License -** requirements will be met: https://www.gnu.org/licenses/lgpl.html and -** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, The Qt Company gives you certain additional -** rights. These rights are described in The Qt Company LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.1 - -Rectangle { - width: 640 - height: 480 - Component { - id: redSquare - Rectangle { - color: "red" - width: 100 - height: 100 - } - } - - Loader { sourceComponent: redSquare;} - Loader { sourceComponent: redSquare; x: 20 } -} |